Skip to content

Commit

Permalink
ENH: Fix tox config to allow testing with tox (#7294)
Browse files Browse the repository at this point in the history
Cython needs to be installed before calling sdist, and 
update currently supported python versions.
  • Loading branch information
aragilar authored and pv committed Apr 19, 2017
1 parent d3c5c88 commit 7b41dc4
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -25,15 +25,17 @@
# installed and that they can be run as 'python2.6', 'python2.7', etc.

[tox]
toxworkdir = {homedir}/.tox/scipy/
envlist = py26,py27,py31,py32,py33
envlist = py27,py34,py35,py36
skipsdist=True

[testenv]
deps=
nose
numpy
nose
numpy
cython
changedir={envdir}
commands=python {toxinidir}/runtests.py -n -m full {posargs:}
commands=
{envpython} {toxinidir}/runtests.py {posargs: --mode full}

[pep8]
max_line_length = 79
Expand Down

0 comments on commit 7b41dc4

Please sign in to comment.