1
0
mirror of https://github.com/no2chem/wideq.git synced 2025-05-20 17:10:19 -07:00
wideq/tox.ini
Adrian Sampson 91f797289b Use built-in unittest for test execution
I like pytest, but I don't think it's necessary for super simple tests.
I'd like to avoid the dependency if we don't need it.
2019-06-30 10:15:51 -04:00

16 lines
266 B
INI

[tox]
envlist = py34,py35,py36,37
skipsdist = True
[testenv]
setenv =
PYTHON_EGG_CACHE = {toxworkdir}/egg-cache
PYTHONHASHSEED = 0
deps =
flit
commands =
flit install
coverage run python -m unittest -s tests
coverage report
py37: flake8