Skip to content

Commit 900f895

Browse files
committed
Change fixture name to avoid issues
1 parent 85dc168 commit 900f895

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

tests/integration/test_catalog.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -76,13 +76,13 @@ def rest_catalog() -> Generator[Catalog, None, None]:
7676

7777

7878
@pytest.fixture(scope="function")
79-
def test_catalog() -> Generator[Catalog, None, None]:
79+
def rest_test_catalog() -> Generator[Catalog, None, None]:
8080
if test_catalog_name := os.environ.get("PYICEBERG_TEST_CATALOG"):
8181
test_catalog = load_catalog(test_catalog_name)
8282
yield test_catalog
8383
clean_up(test_catalog)
8484
else:
85-
pytest.skip("Test catalog environment variables not set")
85+
pytest.skip("PYICEBERG_TEST_CATALOG environment variables not set")
8686

8787

8888
@pytest.fixture(scope="function")
@@ -106,7 +106,7 @@ def hive_catalog() -> Generator[Catalog, None, None]:
106106
pytest.lazy_fixture("sqlite_catalog_file"),
107107
pytest.lazy_fixture("rest_catalog"),
108108
pytest.lazy_fixture("hive_catalog"),
109-
pytest.lazy_fixture("test_catalog"),
109+
pytest.lazy_fixture("rest_test_catalog"),
110110
]
111111

112112

0 commit comments

Comments
 (0)