-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathtox.ini
67 lines (58 loc) · 1.27 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
[tox]
envlist=
coveralls, pylint, flake8, pydocstyle, py26, py27, py33, py34, py35, pypy, pypy3
[testenv]
whitelist_externals=
rm
deps=
unittest2
commands=
unit2 discover tests []
[testenv:dev]
basepython=python2.7
deps=
{[testenv]deps}
coverage
flake8
pydocstyle
commands=
rm -rf ./domain_models/*.pyc
rm -rf ./tests/*.pyc
coverage erase
coverage run --rcfile=./.coveragerc -m unittest2 discover tests []
coverage html --rcfile=./.coveragerc
flake8 --max-complexity=8 domain_models/
flake8 --max-complexity=8 examples/
pydocstyle domain_models/
pydocstyle examples/
[testenv:coveralls]
basepython=python2.7
passenv=TRAVIS TRAVIS_JOB_ID TRAVIS_BRANCH
deps=
{[testenv]deps}
coverage
coveralls
commands=
coverage erase
coverage run --rcfile=./.coveragerc -m unittest2 discover tests []
coveralls
[testenv:pylint]
basepython=python2.7
deps=
pylint
commands=
- pylint -f colorized --rcfile=./.pylintrc domain_models
[testenv:flake8]
basepython=python2.7
deps=
flake8
commands=
flake8 --max-complexity=8 domain_models/
flake8 --max-complexity=8 examples/
[testenv:pydocstyle]
basepython=python2.7
deps=
pydocstyle
commands=
pydocstyle domain_models/
pydocstyle examples/