forked from sodafoundation/anomaly-detection
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtox.ini
38 lines (34 loc) · 755 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
[tox]
skipsdist = True
skip_missing_interpreters = True
envlist =
py27
py35
pep8
pylint
[testenv]
usedevelop = True
setenv = VIRTUAL_ENV={envdir}
deps =
-r{toxinidir}/requirements.txt
-r{toxinidir}/test-requirements.txt
commands =
coverage run --parallel-mode -m py.test
coverage combine
coverage report -m
[testenv:pep8]
deps = flake8
commands = flake8 {posargs:orchestration contrib tests}
[testenv:pylint]
deps =
pylint
-r{toxinidir}/requirements.txt
commands = pylint {posargs:orchestration contrib tests}
[testenv:cover]
deps =
-r{toxinidir}/requirements.txt
-r{toxinidir}/test-requirements.txt
commands =
coverage run --parallel-mode -m py.test
coverage combine
coverage report -m