mirror of
https://github.com/pimoroni/st7735-python.git
synced 2025-01-05 22:40:25 +03:00
24 lines
383 B
INI
24 lines
383 B
INI
[tox]
|
|
envlist = py,qa
|
|
skip_missing_interpreters = True
|
|
|
|
[testenv]
|
|
commands =
|
|
python setup.py install
|
|
coverage run -m pytest -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 |