Files
grow-python/library/tox.ini
Phil Howard 99ba73dc9f Update tests
2020-10-20 15:41:31 +01:00

25 lines
392 B
INI

[tox]
envlist = py{35,37},qa
skip_missing_interpreters = True
[testenv]
commands =
python setup.py install
coverage run -m py.test -v -r wsx
coverage report
deps =
mock
pytest>=3.1
pytest-cov
[testenv:qa]
commands =
check-manifest --ignore tox.ini,tests/*,.coveragerc
python setup.py sdist bdist_wheel
twine check dist/*
flake8 --ignore E501
deps =
check-manifest
flake8
twine