Skip to content

Commit

Permalink
fix for master file names
Browse files Browse the repository at this point in the history
  • Loading branch information
jdub authored and jdub committed Sep 24, 2022
1 parent 26d9cd9 commit f5b1b44
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions benchmarks/basic_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -1139,9 +1139,9 @@ def fr_fail_test():
oe_file = os.path.join(m_d, "pest.0.obs.csv")
assert not os.path.exists(oe_file)

trx_files = [f for f in os.listdir(m_d) if "failed-agent_filename" in f]
trx_files = [f for f in os.listdir(m_d) if f.endswith(".list")]
print(trx_files)
assert len(trx_files) > 3,len(trx_files)
assert len(trx_files) == 11,len(trx_files)



Expand Down Expand Up @@ -1294,7 +1294,7 @@ def ins_missing_e_test():
#shutil.copy2(os.path.join("..","exe","windows","x64","Debug","pestpp-ies.exe"),os.path.join("..","bin","win","pestpp-ies.exe"))
#tplins1_test()
#mf6_v5_ies_test()
mf6_v5_sen_test()
#mf6_v5_sen_test()



Expand All @@ -1306,5 +1306,5 @@ def ins_missing_e_test():
#basic_sqp_test()
#mf6_v5_ies_test()
#fr_timeout_test()
#fr_fail_test()
fr_fail_test()
#tplins1_test()

0 comments on commit f5b1b44

Please sign in to comment.