Skip to content

Commit

Permalink
Add cache test
Browse files Browse the repository at this point in the history
  • Loading branch information
stxue1 authored and mr-c committed Jan 17, 2025
1 parent 8284cd2 commit f6a6e46
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/toil/test/cwl/cwlTest.py
Original file line number Diff line number Diff line change
Expand Up @@ -1222,6 +1222,14 @@ def test_run_conformance_with_caching(self) -> None:
junit_file=os.path.join(self.rootDir, "caching-conformance-1.2.junit.xml"),
)

@slow
@pytest.mark.timeout(CONFORMANCE_TEST_TIMEOUT)
def test_run_conformance_with_task_caching(self) -> None:
self.test_run_conformance(
junit_file=os.path.join(self.rootDir, "task-caching-conformance-1.2.junit.xml"),
extra_args=["--cachedir", self._createTempDir("task_cache")]
)

@slow
@pytest.mark.timeout(CONFORMANCE_TEST_TIMEOUT)
def test_run_conformance_with_in_place_update(self) -> None:
Expand Down

0 comments on commit f6a6e46

Please sign in to comment.