-
Notifications
You must be signed in to change notification settings - Fork 0
/
tox.ini
43 lines (35 loc) · 1.05 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
[tox]
envlist = 3.8,3.7,3.6,flake8,apicheck,typecheck,docstyle,bandit
[testenv]
deps=
-r{toxinidir}/requirements/default.txt
-r{toxinidir}/requirements/test.txt
-r{toxinidir}/requirements/ci.txt
linkcheck,apicheck: -r{toxinidir}/requirements/docs.txt
flake8,docstyle: -r{toxinidir}/requirements/dist.txt
bandit: bandit
sitepackages = False
recreate = False
commands = py.test --random-order --open-files -xvv --cov=fastasync
basepython =
3.8,flake8,typecheck,apicheck,linkcheck,docstyle,bandit: python3.8
3.7: python3.7
3.6: python3.6
[testenv:apicheck]
commands =
sphinx-build -b apicheck -d {envtmpdir}/doctrees docs docs/_build/apicheck
[testenv:linkcheck]
commands =
sphinx-build -b linkcheck -d {envtmpdir}/doctrees docs docs/_build/linkcheck
[testenv:flake8]
commands =
flake8 {toxinidir}/fastasync
[testenv:typecheck]
commands =
mypy -p fastasync
[testenv:docstyle]
commands =
pydocstyle fastasync
[testenv:bandit]
commands =
bandit -c extra/bandit/config.yml -b extra/bandit/baseline.json -r fastasync