Compare commits

...

1 Commits

Author SHA1 Message Date
MichelleArk
593753ea54 use tox to check mypy and dbt versions instead of make 2025-10-27 17:23:22 -04:00
2 changed files with 16 additions and 4 deletions

View File

@@ -60,10 +60,8 @@ jobs:
run: |
python -m pip install --user --upgrade pip
python -m pip --version
make dev
make dev_req
mypy --version
dbt --version
python -m pip install tox
tox -e version_checks
- name: Run pre-commit hooks
run: pre-commit run --all-files --show-diff-on-failure

14
tox.ini
View File

@@ -35,3 +35,17 @@ commands =
deps =
-rdev-requirements.txt
-reditable-requirements.txt
[testenv:{version_checks,py38,py39,py310,py311,py}]
description = check dbt version
download = true
skip_install = true
passenv =
DBT_*
commands =
dbt --version
mypy --version
deps =
-rdev-requirements.txt
-reditable-requirements.txt