Skip to content

Commit

Permalink
pre-commit fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
dstansby committed Jan 22, 2025
1 parent 980728a commit d157e9c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/test_store/test_fsspec.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,9 @@
),
# TODO: fix these warnings
pytest.mark.filterwarnings("ignore:Unclosed client session:ResourceWarning"),
pytest.mark.filterwarnings("ignore:coroutine 'ClientCreatorContext.__aexit__' was never awaited:RuntimeWarning")
pytest.mark.filterwarnings(
"ignore:coroutine 'ClientCreatorContext.__aexit__' was never awaited:RuntimeWarning"
),
]

fsspec = pytest.importorskip("fsspec")
Expand Down
1 change: 1 addition & 0 deletions tests/test_store/test_stateful.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
# TODO: work out where this warning is coming from and fix
pytestmark = [pytest.mark.filterwarnings("ignore:Unclosed client session:ResourceWarning")]


def test_zarr_hierarchy(sync_store: Store):
def mk_test_instance_sync() -> ZarrHierarchyStateMachine:
return ZarrHierarchyStateMachine(sync_store)
Expand Down

0 comments on commit d157e9c

Please sign in to comment.