Commit | Line | Data |
---|---|---|
1 | [tox] | |
2 | envlist = py{27,35},qa | |
3 | skip_missing_interpreters = True | |
4 | ||
5 | [testenv] | |
6 | commands = | |
7 | python setup.py install | |
8 | coverage run -m py.test -v -r wsx | |
9 | coverage report | |
10 | deps = | |
11 | mock | |
12 | pytest>=3.1 | |
13 | pytest-cov | |
14 | ||
15 | [testenv:qa] | |
16 | commands = | |
17 | check-manifest --ignore tox.ini,tests*,.coveragerc | |
18 | python setup.py check -m -r -s | |
19 | flake8 --ignore E501 | |
20 | rstcheck README.rst | |
21 | deps = | |
22 | check-manifest | |
23 | flake8 | |
24 | rstcheck |