31 lines
460 B
INI
31 lines
460 B
INI
[tox]
|
|
envlist =
|
|
py27,py35,py36,py37,py38,pypy,pypy3,flake8
|
|
|
|
[testenv]
|
|
passenv = LANG LC_CTYPE LC_ALL MSYSTEM
|
|
extras = test
|
|
deps =
|
|
nose
|
|
commands =
|
|
nosetests {posargs}
|
|
|
|
[testenv:coverage]
|
|
deps =
|
|
{[testenv]deps}
|
|
coverage
|
|
commands =
|
|
coverage run -m nose
|
|
coverage report -m --fail-under=100
|
|
|
|
[testenv:py]
|
|
commands =
|
|
python --version
|
|
nosetests {posargs}
|
|
|
|
|
|
[testenv:flake8]
|
|
skip_install = true
|
|
deps = flake8
|
|
commands = flake8 *.py
|