Skip to content

Commit c91d43d

Browse files
committed
venv_main added to git ignore
1 parent 786dc1e commit c91d43d

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -162,6 +162,7 @@ celerybeat.pid
162162
.venv
163163
env/
164164
venv/
165+
venv_main/
165166
ENV/
166167
env.bak/
167168
venv.bak/

databricks_sql_connector_core/conftest.py

-4
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,11 @@
44

55
@pytest.fixture(scope="session")
66
def host():
7-
return "adb-6436897454825492.12.azuredatabricks.net"
87
return os.getenv("DATABRICKS_SERVER_HOSTNAME")
98

109

1110
@pytest.fixture(scope="session")
1211
def http_path():
13-
return "/sql/1.0/warehouses/2f03dd43e35e2aa0"
1412
return os.getenv("DATABRICKS_HTTP_PATH")
1513

1614

@@ -26,13 +24,11 @@ def ingestion_user():
2624

2725
@pytest.fixture(scope="session")
2826
def catalog():
29-
return "main"
3027
return os.getenv("DATABRICKS_CATALOG")
3128

3229

3330
@pytest.fixture(scope="session")
3431
def schema():
35-
return "default"
3632
return os.getenv("DATABRICKS_SCHEMA", "default")
3733

3834

0 commit comments

Comments
 (0)