18 lines
366 B
INI
18 lines
366 B
INI
[tox]
|
|
envlist = test
|
|
setupdir = {toxinidir}/../../
|
|
|
|
[testenv:test]
|
|
basepython = python3
|
|
passenv = http_proxy https_proxy
|
|
deps = -rrequirements.txt
|
|
changedir = {envtmpdir}
|
|
commands =
|
|
py.test -s -v \
|
|
--doctest-modules \
|
|
--junitxml=tests.xml \
|
|
--dist=loadscope \
|
|
--tx=8*popen \
|
|
{toxinidir}/test \
|
|
{toxinidir}/epsilon
|