blob: 3f8a43b3b9e2543373984a122193e193f715dbab (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
[tox]
envlist = py37,py38
[testenv]
deps=
pytest
coverage
pytest-cov
setenv =
PYTHONPATH={toxinidir}
passenv = http_proxy HTTP_PROXY https_proxy HTTPS_PROXY no_proxy NO_PROXY
commands=
pytest tests --junitxml xunit-results.xml --cov distributor --cov-report xml \
--cov-report term --cov-report html
|