mirror of
https://github.com/pimoroni/st7735-python.git
synced 2025-01-05 22:40:25 +03:00
22 lines
296 B
INI
22 lines
296 B
INI
[tox]
|
|
envlist = py{27,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 =
|
|
flake8 --ignore E501
|
|
rstcheck README.rst
|
|
deps =
|
|
flake8
|
|
rstcheck
|