Skip to content

Commit

Permalink
Fix version for integration tests
Browse files Browse the repository at this point in the history
  • Loading branch information
stxue1 authored Apr 24, 2024
1 parent 85ec01b commit cc6c796
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/toil/test/wdl/wdltoil_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ def test_conformance_tests_v11(self):
@slow
def test_conformance_tests_integration(self):
ids_to_run = "encode,tut01,tut02,tut03,tut04"
p = subprocess.run(self.base_command + ["-v", "1.1", "--id", ids_to_run], capture_output=True)
p = subprocess.run(self.base_command + ["-v", "1.0", "--id", ids_to_run], capture_output=True)

if p.returncode != 0:
print(p.stdout.decode('utf-8', errors='replace'))
Expand Down

0 comments on commit cc6c796

Please sign in to comment.