18 lines
527 B
INI
18 lines
527 B
INI
[tox]
|
|
envlist = py27,py36,py{27,36}-lxml
|
|
|
|
[testenv]
|
|
basepython =
|
|
# we use TOXPYTHON env variable to specify the location of Appveyor Python
|
|
py27: {env:TOXPYTHON:python2.7}
|
|
py35: {env:TOXPYTHON:python3.5}
|
|
py36: {env:TOXPYTHON:python3.6}
|
|
deps =
|
|
pytest
|
|
-rrequirements.txt
|
|
lxml: -rextra_requirements.txt
|
|
commands =
|
|
# run the test suite against the package installed inside tox env.
|
|
# any extra positional arguments after `tox -- ...` are passed on to pytest
|
|
pytest {posargs:--pyargs ufoLib}
|