Skip to content

Commit

Permalink
Prep for 1.8.0rc1 (#660)
Browse files Browse the repository at this point in the history
  • Loading branch information
benc-db authored May 10, 2024
1 parent b8acdbf commit c767aac
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## dbt-databricks 2.0.0 (TBD)
## dbt-databricks 1.8.0 (TBD)

### Features

Expand Down
2 changes: 1 addition & 1 deletion dbt/adapters/databricks/__version__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version: str = "2.0.0rc1"
version: str = "1.8.0rc1"
6 changes: 3 additions & 3 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ deps =
[testenv:integration-databricks-cluster]
basepython = python3
commands =
/bin/bash -c '{envpython} -m pytest -v --profile databricks_cluster -n auto tests/functional/adapter/* {posargs}; ret=$?; [ $ret = 5 ] && exit 0 || exit $ret'
/bin/bash -c '{envpython} -m pytest -v --profile databricks_cluster -n 10 tests/functional/adapter/* {posargs}; ret=$?; [ $ret = 5 ] && exit 0 || exit $ret'
passenv =
DBT_*
PYTEST_ADDOPTS
Expand All @@ -49,7 +49,7 @@ allowlist_externals = /bin/bash
[testenv:integration-databricks-uc-cluster]
basepython = python3
commands =
/bin/bash -c '{envpython} -m pytest -v --profile databricks_uc_cluster -n auto tests/functional/adapter/* {posargs}; ret=$?; [ $ret = 5 ] && exit 0 || exit $ret'
/bin/bash -c '{envpython} -m pytest -v --profile databricks_uc_cluster -n 10 tests/functional/adapter/* {posargs}; ret=$?; [ $ret = 5 ] && exit 0 || exit $ret'
passenv =
DBT_*
PYTEST_ADDOPTS
Expand All @@ -61,7 +61,7 @@ allowlist_externals = /bin/bash
[testenv:integration-databricks-uc-sql-endpoint]
basepython = python3
commands =
/bin/bash -c '{envpython} -m pytest -v --profile databricks_uc_sql_endpoint -n auto --dist loadscope tests/functional/adapter/* {posargs}; ret=$?; [ $ret = 5 ] && exit 0 || exit $ret'
/bin/bash -c '{envpython} -m pytest -v --profile databricks_uc_sql_endpoint -n 10 --dist loadscope tests/functional/adapter/* {posargs}; ret=$?; [ $ret = 5 ] && exit 0 || exit $ret'
passenv =
DBT_*
PYTEST_ADDOPTS
Expand Down

0 comments on commit c767aac

Please sign in to comment.