summaryrefslogtreecommitdiff
path: root/tox.ini
diff options
context:
space:
mode:
authorNathaniel J. Smith <njs@pobox.com>2012-07-11 14:26:33 +0100
committerNathaniel J. Smith <njs@pobox.com>2012-07-11 14:26:33 +0100
commit64c3a8f464e1b187aef833dda5ad0ce7dba44ef4 (patch)
treeabe4bbbe22a6229a2cd2a721ac85c956b2e525da /tox.ini
parent436a28f4ea4d596c59e85745eac7446f7e18903f (diff)
downloadnumpy-64c3a8f464e1b187aef833dda5ad0ce7dba44ef4.tar.gz
Add separate-build tests to tox.ini
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini10
1 files changed, 9 insertions, 1 deletions
diff --git a/tox.ini b/tox.ini
index 3085741ac..fd52674dc 100644
--- a/tox.ini
+++ b/tox.ini
@@ -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]