http://blog.pytest.org/2016/whats-new-in-pytest-30/ https://twitter.com/hashtag/dropthedot
18 lines
365 B
INI
18 lines
365 B
INI
[tox]
|
|
envlist = test
|
|
setupdir = {toxinidir}/../../
|
|
|
|
[testenv:test]
|
|
basepython = python3
|
|
passenv = http_proxy https_proxy
|
|
deps = -rrequirements.txt
|
|
changedir = {envtmpdir}
|
|
commands =
|
|
pytest -s -v \
|
|
--doctest-modules \
|
|
--junitxml=tests.xml \
|
|
--dist=loadscope \
|
|
--tx=8*popen \
|
|
{toxinidir}/test \
|
|
{toxinidir}/epsilon
|