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 2677c97 commit 6702220Copy full SHA for 6702220
tests/integration/fixtures/test_catalog.py
@@ -17,6 +17,12 @@ def test_schema_fixture(make_schema):
17
logger.info(f"Created new schema: {make_schema()}")
18
19
20
+def test_managed_schema_fixture(make_schema, make_random, env_or_skip):
21
+ schema_name = f"dummy_s{make_random(4)}".lower()
22
+ schema_location = f"{env_or_skip('TEST_MOUNT_CONTAINER')}/a/{schema_name}"
23
+ logger.info(f"Created new schema: {make_schema(location = schema_location)}")
24
+
25
26
def test_new_managed_table_in_new_schema(make_table):
27
logger.info(f"Created new managed table in new schema: {make_table()}")
28
0 commit comments