fonttools/tox.ini
Cosimo Lupo 908cff36ad add tox.ini configuration file
install package and run tests in isolated virtual environments
2016-09-11 17:00:13 +01:00

16 lines
382 B
INI

[tox]
envlist = py27, py35
[testenv]
basepython =
# we use TOXPYTHON env variable to specify the location of Appveyor Python
py27: {env:TOXPYTHON:python2.7}
py34: {env:TOXPYTHON:python3.4}
py35: {env:TOXPYTHON:python3.5}
deps =
pytest
-rrequirements.txt
commands =
# pass to pytest any extra positional arguments after `tox -- ...`
pytest {posargs}