Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
stxue1 committed Dec 19, 2024
1 parent 121afa1 commit 68f88e0
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/toil/test/cwl/cwlTest.py
Original file line number Diff line number Diff line change
Expand Up @@ -717,9 +717,10 @@ def test_caching(self) -> None:
]
# Finish the job with a correct PATH
st = StringIO()
cwltoil.main(cmd, stdout=st)
ret = cwltoil.main(cmd, stdout=st)
assert ret == 0
# cwltool hashes certain steps into directories, ensure it exists
assert os.path.exists(os.path.join(cwlDir, "cache", "92f7d79ad270b174174343085c5456c6"))
assert os.path.exists(os.path.join(cwlDir, "cache", "9da28e219a61b062824576503f88b863"))

@needs_aws_s3
def test_streamable(self, extra_args: Optional[list[str]] = None) -> None:
Expand Down

0 comments on commit 68f88e0

Please sign in to comment.