Transitional fix for new LTR559 library
[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 =
ad2060db
PH
17 check-manifest --ignore tox.ini,tests*,.coveragerc
18 python setup.py check -m -r -s
651e1c20
PH
19 flake8 --ignore E501
20 rstcheck README.rst
21deps =
ad2060db 22 check-manifest
651e1c20
PH
23 flake8
24 rstcheck