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 f1aeebf commit 937915cCopy full SHA for 937915c
examples/python/src/tests/conftest.py
@@ -58,7 +58,6 @@ def postgres_connection(postgres_uri) -> psycopg2.extensions.connection:
58
@pytest.fixture()
59
def postgres_db(postgres_connection) -> psycopg2.extensions.connection:
60
schema_name = f"sqltest_{random.randint(0, 1000)}"
61
- # schema_name = "sqltest_1"
62
cur = postgres_connection.cursor()
63
cur.execute(f"CREATE SCHEMA {schema_name}")
64
cur.execute(f"SET search_path TO {schema_name}")
0 commit comments