blob: 2b6716ea5e97bc5a70a3a251c82222264b11e476 (
plain)
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
|
# content of: tox.ini , put in same dir as setup.py
[tox]
envlist = py36,pep8,cov
skipsdist = true
[flake8]
ignore = E501,E722
exclude = ./venv-tox,./.tox,./venv,./docs
[testenv:pep8]
deps = flake8
commands = flake8
[testenv]
deps = -r{toxinidir}/requirements.txt
commands = pytest
[testenv:py36]
commands =
{[testenv]commands}
[testenv:cov]
deps = pytest
pytest-cov
commands = pytest --cov-report=html
|