diff options
author | Nathaniel J. Smith <njs@pobox.com> | 2012-07-11 14:26:33 +0100 |
---|---|---|
committer | Nathaniel J. Smith <njs@pobox.com> | 2012-07-11 14:26:33 +0100 |
commit | 64c3a8f464e1b187aef833dda5ad0ce7dba44ef4 (patch) | |
tree | abe4bbbe22a6229a2cd2a721ac85c956b2e525da /tox.ini | |
parent | 436a28f4ea4d596c59e85745eac7446f7e18903f (diff) | |
download | numpy-64c3a8f464e1b187aef833dda5ad0ce7dba44ef4.tar.gz |
Add separate-build tests to tox.ini
Diffstat (limited to 'tox.ini')
-rw-r--r-- | tox.ini | 10 |
1 files changed, 9 insertions, 1 deletions
@@ -25,7 +25,7 @@ # installed and that they can be run as 'python2.4', 'python2.5', etc. [tox] -envlist = py24,py25,py26,py27,py31,py32 +envlist = py24,py25,py26,py27,py31,py32,py27-separate,py32-separate [testenv] deps= @@ -33,6 +33,14 @@ deps= changedir={envdir} commands=python {toxinidir}/tools/test-installed-numpy.py {posargs:} +[testenv:py27-separate] +basepython=python2.7 +env=NPY_SEPARATE_COMPILATION=1 + +[testenv:py32-separate] +basepython=python3.2 +env=NPY_SEPARATE_COMPILATION=1 + # Not run by default. Set up the way you want then use 'tox -e debug' # if you want it: [testenv:debug] |