Skip to content

Commit

Permalink
csv files are saved in folder
Browse files Browse the repository at this point in the history
for file in ("OutputFiles"):
  • Loading branch information
Sasha committed Nov 13, 2023
1 parent 36d1819 commit 0f8f646
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion modelCsharp/TestModel/testGraph/testGraph/testGraph.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,20 @@
tests = []
test_name = []

for file in os.listdir(path+"\\OutputFiles"):
# run it on machine
#for file in os.listdir(path+"\\OutputFiles"):

#if file.endswith('.csv'):
#tests.append(file)
#test_name.append(os.path.splitext(file)[0])

for file in ("OutputFiles"):

if file.endswith('.csv'):
tests.append(file)
test_name.append(os.path.splitext(file)[0])


Alltests =[]
for t in tests[:]:

Expand Down

0 comments on commit 0f8f646

Please sign in to comment.