Skip to content

Commit

Permalink
venv_main added to git ignore
Browse files Browse the repository at this point in the history
  • Loading branch information
jprakash-db committed Aug 20, 2024
1 parent 786dc1e commit c91d43d
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -162,6 +162,7 @@ celerybeat.pid
.venv
env/
venv/
venv_main/
ENV/
env.bak/
venv.bak/
Expand Down
4 changes: 0 additions & 4 deletions databricks_sql_connector_core/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,11 @@

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


@pytest.fixture(scope="session")
def http_path():
return "/sql/1.0/warehouses/2f03dd43e35e2aa0"
return os.getenv("DATABRICKS_HTTP_PATH")


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

@pytest.fixture(scope="session")
def catalog():
return "main"
return os.getenv("DATABRICKS_CATALOG")


@pytest.fixture(scope="session")
def schema():
return "default"
return os.getenv("DATABRICKS_SCHEMA", "default")


Expand Down

0 comments on commit c91d43d

Please sign in to comment.