We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 51ff387 commit dcb4c56Copy full SHA for dcb4c56
tests/test_store/test_fsspec.py
@@ -44,6 +44,9 @@
44
pytest.mark.filterwarnings(
45
"ignore:Exception ignored in.*finalize object.*:pytest.PytestUnraisableExceptionWarning"
46
),
47
+ # All S3 tests share a module-scoped moto server on a fixed port,
48
+ # so they must run on a single xdist worker to avoid port conflicts.
49
+ pytest.mark.xdist_group(name="s3"),
50
]
51
52
fsspec = pytest.importorskip("fsspec")
@@ -133,7 +136,6 @@ async def test_basic() -> None:
133
136
assert out[0].to_bytes() == data[1:]
134
137
135
138
-@pytest.mark.xdist_group(name="s3")
139
class TestFsspecStoreS3(StoreTests[FsspecStore, cpu.Buffer]):
140
store_cls = FsspecStore
141
buffer_cls = cpu.Buffer
0 commit comments