-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtox.ini
62 lines (53 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
[tox]
envlist =
flake8
isort
pydocstyle
py27
py34
py35
py36
docs
packaging
coverage-report
[testenv:flake8]
deps = flake8
skip_install = True
commands = flake8
[testenv:isort]
deps = isort
skip_install = True
commands = isort -c -rc -df
[testenv:pydocstyle]
deps = pydocstyle
commands = pydocstyle src
[testenv]
deps = -rrequirements.txt
commands = python -m pytest {posargs}
[testenv:py27]
deps = -rrequirements.txt
commands = coverage run --parallel -m pytest {posargs}
[testenv:py36]
deps = -rrequirements.txt
commands = coverage run --parallel -m pytest {posargs}
[testenv:docs]
deps =
doc8
sphinx
commands =
doc8 CHANGELOG.rst README.rst docs
sphinx-build -W -b html docs docs/_build/html
sphinx-build -W -b linkcheck docs docs/_build/linkcheck
[testenv:packaging]
deps =
check-manifest
docutils
commands =
check-manifest
python setup.py check --restructured --strict
[testenv:coverage-report]
deps = coverage
skip_install = True
commands =
coverage combine
coverage report