summaryrefslogtreecommitdiff
path: root/tox.ini
diff options
context:
space:
mode:
authorCharles Harris <charlesr.harris@gmail.com>2014-05-06 09:37:38 -0600
committerCharles Harris <charlesr.harris@gmail.com>2014-05-06 16:24:11 -0600
commitd1422d35d7ad70ebb2c7e41eadd14f27f8cc7e31 (patch)
treeb3fb26e811b785370360bf38e4326cfd47a72218 /tox.ini
parent46c7211cf6bf2f03adadd4d283ecd11e00d80184 (diff)
downloadnumpy-d1422d35d7ad70ebb2c7e41eadd14f27f8cc7e31.tar.gz
MAINT: Make NPY_RELAXED_STRIDE_CHECKING true by default.
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini10
1 files changed, 5 insertions, 5 deletions
diff --git a/tox.ini b/tox.ini
index 0fb63300b..f84910299 100644
--- a/tox.ini
+++ b/tox.ini
@@ -25,7 +25,7 @@
# installed and that they can be run as 'python2.7', 'python3.3', etc.
[tox]
-envlist = py26,py27,py32,py33,py27-monolithic,py33-monolithic,py27-relaxed-strides,py33-relaxed-strides
+envlist = py26,py27,py32,py33,py27-monolithic,py33-monolithic,py27-not-relaxed-strides,py33-not-relaxed-strides
[testenv]
deps=
@@ -41,13 +41,13 @@ env=NPY_SEPARATE_COMPILATION=0
basepython=python3.3
env=NPY_SEPARATE_COMPILATION=0
-[testenv:py27-relaxed-strides]
+[testenv:py27-not-relaxed-strides]
basepython=python2.7
-env=NPY_RELAXED_STRIDES_CHECKING=1
+env=NPY_RELAXED_STRIDES_CHECKING=0
-[testenv:py33-relaxed-strides]
+[testenv:py33-not-relaxed-strides]
basepython=python3.3
-env=NPY_RELAXED_STRIDES_CHECKING=1
+env=NPY_RELAXED_STRIDES_CHECKING=0
# Not run by default. Set up the way you want then use 'tox -e debug'
# if you want it: