16 lines
278 B
INI
16 lines
278 B
INI
|
[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 =
|
||
|
{envpython} sh ../test.sh
|