1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
|
# Tox (http://tox.testrun.org/) configuration
[tox]
envlist = py27_np1121, py35_np1121
[testenv]
changedir={envdir}
commands={envpython} {toxinidir}/tools/test-installed-bottleneck.py {posargs:}
[testenv:py27_np1121]
basepython = python2.7
deps =
nose
numpy==1.12.1
[testenv:py35_np1121]
basepython = python3.5
deps =
nose
numpy==1.12.1
# Not run by default. Use 'tox -e py27_npmaster' to call it
[testenv:py27_npmaster]
basepython = python2.7
deps =
nose
https://github.com/numpy/numpy/zipball/master
|