Skip to content

Commit

Permalink
Small pytest mark nit
Browse files Browse the repository at this point in the history
  • Loading branch information
sjperkins committed Nov 13, 2023
1 parent 4ff3f47 commit 9f6c76d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion daskms/tests/test_fsspec_store.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,7 @@ def test_store_subtable_access(tmp_path_factory):
assert (table_dir / "foo.txt").exists()


@pytest.mark.skipif(s3fs is None, reason="s3fs not installed")
def test_minio_server(
tmp_path,
py_minio_client,
Expand All @@ -109,7 +110,6 @@ def test_minio_server(
py_minio_client.make_bucket(s3_bucket_name)
py_minio_client.fput_object(s3_bucket_name, "stuff.txt", str(stuff))

s3fs = pytest.importorskip("s3fs")
s3 = s3fs.S3FileSystem(
key=minio_user_key,
secret=minio_user_key,
Expand Down

0 comments on commit 9f6c76d

Please sign in to comment.