blob: a0bebeadd5f035e220f4faf9c0025c59bcb50d03 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
[tox]
envlist = py37
[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
|