1
0
mirror of https://github.com/no2chem/wideq.git synced 2025-05-21 01:20:11 -07:00
wideq/tox.ini
Adrian Sampson 0c4600280f Use built-in tox support for PEP 518
We don't need to manually invoke `flit`; with `isolated_build`, tox
supports non-setuptools builds out of the box.
2019-06-30 10:25:34 -04:00

13 lines
240 B
INI

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