-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathtox.ini
More file actions
40 lines (36 loc) · 770 Bytes
/
tox.ini
File metadata and controls
40 lines (36 loc) · 770 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
[tox]
envlist = dbt1.6, dbt1.7, dbt1.8, dbt1.9, dbtlatest
requires = tox-uv
[testenv:dbt{1.6,1.7,1.8,1.9,latest}]
basepython = python3.10
deps =
pytest
pytest-asyncio
pytest-cov
pandas
duckdb
httpx
dbt1.6: dbt-duckdb==1.6.*
dbt1.7: dbt-duckdb==1.7.*
dbt1.8: dbt-duckdb==1.8.*
dbt1.9: dbt-duckdb==1.9.*
dbtlatest: dbt-duckdb
# only test mcp for the latest dbt version
dbtlatest: mcp>=1.0.0
commands =
pytest --cov --cov-append --cov-report=xml {posargs:./tests}
[testenv:{3.10,3.11,3.12,3.13}]
deps =
pytest
pytest-asyncio
pytest-cov
pandas
duckdb
httpx
dbt-duckdb
commands =
pytest {posargs:./tests}
[testenv:clean]
deps = coverage
skip_install = true
commands = coverage erase