mirror of
https://github.com/no2chem/wideq.git
synced 2025-05-21 01:20:11 -07:00
We don't need to manually invoke `flit`; with `isolated_build`, tox supports non-setuptools builds out of the box.
13 lines
240 B
INI
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
|