Skip to content

Commit 76f0342

Browse files
committed
remove glue and dynamodb
1 parent 53c9107 commit 76f0342

File tree

1 file changed

+1
-19
lines changed

1 file changed

+1
-19
lines changed

tests/integration/test_catalog.py

Lines changed: 1 addition & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -21,31 +21,13 @@
2121
import pytest
2222

2323
from pyiceberg.catalog import Catalog, MetastoreCatalog
24-
from pyiceberg.catalog.dynamodb import DynamoDbCatalog
25-
from pyiceberg.catalog.glue import GLUE_CATALOG_ENDPOINT, GlueCatalog
2624
from pyiceberg.catalog.hive import HiveCatalog
2725
from pyiceberg.catalog.memory import InMemoryCatalog
2826
from pyiceberg.catalog.rest import RestCatalog
2927
from pyiceberg.catalog.sql import SqlCatalog
3028
from pyiceberg.io import WAREHOUSE
3129
from pyiceberg.schema import Schema
32-
from tests.conftest import clean_up, get_bucket_name, get_glue_endpoint, get_s3_path
33-
34-
35-
@pytest.fixture(scope="function")
36-
def dynamodb() -> Generator[Catalog, None, None]:
37-
test_catalog = DynamoDbCatalog("test_dynamodb_catalog", warehouse=get_s3_path(get_bucket_name()))
38-
yield test_catalog
39-
clean_up(test_catalog)
40-
41-
42-
@pytest.fixture(scope="function")
43-
def glue() -> Generator[Catalog, None, None]:
44-
test_catalog = GlueCatalog(
45-
"test_glue_catalog", **{"warehouse": get_s3_path(get_bucket_name()), GLUE_CATALOG_ENDPOINT: get_glue_endpoint()}
46-
)
47-
yield test_catalog
48-
clean_up(test_catalog)
30+
from tests.conftest import clean_up
4931

5032

5133
@pytest.fixture(scope="function")

0 commit comments

Comments
 (0)