Initial Commit
[EVA-2020-02-2.git] / library / tox.ini
CommitLineData
651e1c20
PH
1[tox]
2envlist = py{27,35},qa
3skip_missing_interpreters = True
4
5[testenv]
6commands =
7 python setup.py install
8 coverage run -m py.test -v -r wsx
9 coverage report
10deps =
11 mock
12 pytest>=3.1
13 pytest-cov
14
15[testenv:qa]
16commands =
17 flake8 --ignore E501
18 rstcheck README.rst
19deps =
20 flake8
21 rstcheck