2018-05-17 12:48:29 +00:00
|
|
|
[tox]
|
2019-04-10 08:34:22 +00:00
|
|
|
envlist = py27, py34, py35, py36, py37, pypy, pypy3
|
2018-05-17 12:48:29 +00:00
|
|
|
skip_missing_interpreters=true
|
|
|
|
|
|
|
|
[travis]
|
|
|
|
2.7 = py27
|
|
|
|
3.4 = py34
|
|
|
|
3.5 = py35
|
|
|
|
3.6 = py36
|
2019-04-10 08:34:22 +00:00
|
|
|
3.7 = py37
|
2018-05-17 12:48:29 +00:00
|
|
|
pypy = pypy
|
|
|
|
pypy3 = pypy3
|
|
|
|
|
|
|
|
[testenv]
|
|
|
|
whitelist_externals = git
|
|
|
|
deps =
|
|
|
|
-rnearley-requirements.txt
|
|
|
|
|
|
|
|
# to always force recreation and avoid unexpected side effects
|
|
|
|
recreate=True
|
|
|
|
|
|
|
|
commands=
|
|
|
|
git submodule sync -q
|
|
|
|
git submodule update --init
|
2018-12-22 17:57:32 +00:00
|
|
|
python -m tests {posargs}
|