Skip to content

Commit

Permalink
fix fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Georgi Rusev authored and Georgi Rusev committed Jan 9, 2025
1 parent 578cf3b commit 43f979b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions python/tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -379,14 +379,14 @@ def arctic_library_lmdb(arctic_client_lmdb, lib_name) -> Library:
@pytest.fixture(
scope="function",
params=[
# "lmdb",
# "mem",
"lmdb",
"mem",
pytest.param("real_s3", marks=REAL_S3_TESTS_MARK),
],
)
def basic_arctic_client(request) -> Arctic:
def basic_arctic_client(request, encoding_version) -> Arctic:
storage_fixture: StorageFixture = request.getfixturevalue(request.param + "_storage")
ac = storage_fixture.create_arctic()
ac = storage_fixture.create_arctic(encoding_version=encoding_version)
assert not ac.list_libraries()
return ac

Expand Down

0 comments on commit 43f979b

Please sign in to comment.