Skip to content

Commit

Permalink
does this fix test failures
Browse files Browse the repository at this point in the history
  • Loading branch information
benc-db committed Jan 3, 2024
1 parent 6b93348 commit 1584b7f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build_cluster_http_path.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import os

workspace_id = os.getenv("DBT_DATABRICKS_HOST_NAME")[4:18]
workspace_id = os.getenv("DBT_DATABRICKS_HOST_NAME")[4:19]
cluster_id = os.getenv("TEST_PECO_CLUSTER_ID")
uc_cluster_id = os.getenv("TEST_PECO_UC_CLUSTER_ID")
http_path = f"sql/protocolv1/o/{workspace_id}/{cluster_id}"
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ allowlist_externals = /bin/bash
basepython = python3
commands =
/bin/bash -c '{envpython} -m pytest -v -m profile_databricks_uc_sql_endpoint -n4 tests/integration/* {posargs}; ret=$?; [ $ret = 5 ] && exit 0 || exit $ret'
/bin/bash -c '{envpython} -m pytest -v --profile databricks_uc_sql_endpoint -n4 tests/functional/adapter/* {posargs}; ret=$?; [ $ret = 5 ] && exit 0 || exit $ret'
/bin/bash -c '{envpython} -m pytest -v --profile databricks_uc_sql_endpoint tests/functional/adapter/* {posargs}; ret=$?; [ $ret = 5 ] && exit 0 || exit $ret'
passenv =
DBT_*
PYTEST_ADDOPTS
Expand Down

0 comments on commit 1584b7f

Please sign in to comment.