Commit | Line | Data |
---|---|---|
651e1c20 PH |
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 | flake8 --ignore E501 | |
18 | rstcheck README.rst | |
19 | deps = | |
20 | flake8 | |
21 | rstcheck |