-
Notifications
You must be signed in to change notification settings - Fork 3
/
tox.ini
51 lines (44 loc) · 938 Bytes
/
tox.ini
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
41
42
43
44
45
46
47
48
49
50
51
[tox]
envlist = py{38,39}
[gh-actions]
python =
3.8: py38, docs, quality
3.9: py39
[doc8]
max-line-length = 120
[pycodestyle]
exclude = .git,.tox
max-line-length = 120
max-doc-length = 120
[pytest]
addopts = --cov dbt_schema_builder --cov-report term-missing --cov-report xml
norecursedirs = .* docs requirements site-packages
[testenv]
deps =
-r{toxinidir}/requirements/test.txt
commands =
pytest {posargs}
[testenv:docs]
setenv =
PYTHONPATH = {toxinidir}
allowlist_externals =
make
rm
deps =
-r{toxinidir}/requirements/doc.txt
commands =
doc8 --ignore-path docs/_build README.rst docs
rm -f docs/dbt_schema_builder.rst
rm -f docs/modules.rst
make -C docs clean
make -C docs html
python setup.py check --restructuredtext --strict
[testenv:quality]
allowlist_externals =
make
rm
touch
deps =
-r{toxinidir}/requirements/quality.txt
commands =
make quality