Skip to content

Commit

Permalink
skip for CI, seemingly CI filesystems doesn't support this
Browse files Browse the repository at this point in the history
  • Loading branch information
devkral committed Jan 3, 2025
1 parent 321d3a7 commit 4f4df3b
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions tests/test_stores.py
Original file line number Diff line number Diff line change
Expand Up @@ -242,6 +242,8 @@ def test_update_task_next_runtime(store, create_add_task, next_run_time, timezon
def test_update_task_clear_next_runtime_when_run_times_are_initially_the_same(
store, create_add_task, next_run_time, timezone, index
):
if isinstance(store, FileStore) and os.environ.get("CI") == "true":
pytest.skip("CI server filesystem not suitable for this test with FileStore.")
tasks = [
create_add_task(store, dummy_task, datetime(2020, 2, 26), f"task{i}") for i in range(3)
]
Expand Down

0 comments on commit 4f4df3b

Please sign in to comment.