-
Notifications
You must be signed in to change notification settings - Fork 13
/
tox.ini
55 lines (47 loc) · 1.13 KB
/
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
52
53
54
[tox]
envlist = python, quality
[doc8]
max-line-length = 120
[pycodestyle]
exclude = .git,.tox,migrations
max-line-length = 120
[pytest]
addopts = --cov repo_health --cov-report term-missing --cov-report xml
norecursedirs = .* docs requirements
testpaths =
tests
[pydocstyle]
ignore = D101,D200,D203,D212,D215,D404,D405,D406,D407,D408,D409,D410,D411,D412,D413,D414
match-dir = (?!migrations)
[testenv]
setenv =
PYTHONPATH = {toxinidir}
deps =
setuptools
-r{toxinidir}/requirements/test.txt
commands =
pytest {posargs}
[testenv:docs]
setenv =
PYTHONPATH = {toxinidir}
allowlist_externals =
make
rm
deps =
setuptools
-r{toxinidir}/requirements/doc.txt
commands =
doc8 --ignore-path docs/_build README.rst docs
rm -f docs/modules.rst
make -C docs clean
make -C docs html
python setup.py check --restructuredtext --strict
[testenv:quality]
setenv =
PYTHONPATH = {toxinidir}
deps =
setuptools
-r{toxinidir}/requirements/quality.txt
commands =
pylint repo_health setup.py repo_health_dashboard tests
isort --check repo_health setup.py repo_health_dashboard tests