2021-03-20 21:56:03 +00:00
|
|
|
[tox]
|
|
|
|
skipsdist = true
|
|
|
|
envlist = py3
|
|
|
|
|
|
|
|
# Add environment to use the default python3 installation
|
|
|
|
[testenv:py3]
|
|
|
|
basepython = python3
|
|
|
|
|
|
|
|
[testenv]
|
|
|
|
usedevelop = true
|
|
|
|
deps = -r{toxinidir}/requirements.txt
|
|
|
|
setenv =
|
|
|
|
PYTHONDONTWRITEBYTECODE=1
|
|
|
|
commands =
|
2021-04-25 23:24:08 +00:00
|
|
|
pytest
|
2021-06-29 14:55:52 +00:00
|
|
|
coverage run -m pytest
|