forked from ai4os/DEEPaaS
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtox.ini
110 lines (93 loc) · 2.7 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
[tox]
minversion = 2.1
envlist = py{36,37},pep8,pip-missing-reqs,bandit,pypi
skipsdist = True
[testenv]
usedevelop = True
basepython = python3
whitelist_externals =
find
rm
install_command = pip install -U {opts} {packages}
setenv =
VIRTUAL_ENV={envdir}
LC_ALL=en_US.utf-8
OS_STDOUT_CAPTURE=1
OS_STDERR_CAPTURE=1
OS_TEST_TIMEOUT=160
deps = -r{toxinidir}/requirements.txt
-r{toxinidir}/test-requirements.txt
commands =
find . -type f -name "*.pyc" -delete
[testenv:venv]
commands = {posargs}
[testenv:cover]
# TODO(stephenfin): Remove the PYTHON hack below in favour of a [coverage]
# section once we rely on coverage 4.3+
#
# https://bitbucket.org/ned/coveragepy/issues/519/
envdir = {toxworkdir}/shared
setenv =
{[testenv]setenv}
PYTHON=coverage run --source deepaas --parallel-mode
commands =
{[testenv]commands}
coverage erase
stestr run {posargs}
coverage combine
coverage html -d cover
coverage xml -o cover/coverage.xml
coverage report
[testenv:py27]
# TODO(efried): Remove this once https://github.com/tox-dev/tox/issues/425 is fixed.
basepython = python2.7
commands =
{[testenv]commands}
stestr run {posargs}
[testenv:py37]
# TODO(efried): Remove this once https://github.com/tox-dev/tox/issues/425 is fixed.
basepython = python3.7
commands =
{[testenv]commands}
stestr run {posargs}
[testenv:py36]
# TODO(efried): Remove this once https://github.com/tox-dev/tox/issues/425 is fixed.
basepython = python3.6
commands =
{[testenv:py37]commands}
[testenv:pep8]
envdir = {toxworkdir}/shared
commands =
flake8
[testenv:bandit]
envdir = {toxworkdir}/shared
commands = bandit -r deepaas -x tests -s B110,B410
[testenv:pypi]
envdir = {toxworkdir}/shared
commands = python3 setup.py check -r -s -m
[testenv:cobertura]
commands = py.test --cov=deepaas --cov-report=xml --cov-report=term-missing deepaas/tests
[testenv:bandit-report]
commands =
- mkdir /tmp/bandit
- bandit -r deepaas -x tests -s B110,B410 -f html -o /tmp/bandit/index.html
[testenv:genconfig]
commands = oslo-config-generator --config-file=etc/deepaas-config-generator.conf
[testenv:docs]
commands =
rm -rf doc/build
python setup.py build_sphinx
[testenv:pip-missing-reqs]
# do not install test-requirements as that will pollute the virtualenv for
# determining missing packages
# this also means that pip-missing-reqs must be installed separately, outside
# of the requirements.txt files
deps = pip_check_reqs
commands=pip-missing-reqs -d --ignore-file=deepaas/tests/* deepaas
[flake8]
# H803 skipped on purpose per list discussion.
# E123, E125 skipped as they are invalid PEP-8.
show-source = True
ignore = E123,E125,H803,H405
builtins = _
exclude=.venv,.git,.tox,dist,doc,*lib/python*,*egg,build