summaryrefslogtreecommitdiff
path: root/tox.ini
diff options
context:
space:
mode:
authorAlex Willmer <alex@moreati.org.uk>2015-08-04 18:44:39 +0100
committerAlex Willmer <alex@moreati.org.uk>2015-08-04 18:44:39 +0100
commitf179ec92d8ddb0dc5f7445255022be5c4765a704 (patch)
tree0fa5319d4dee3f6573029d9f9cb53716ae93d7f4 /tox.ini
parent4553701b5d03efb5155ac6de7f439d372726caf6 (diff)
downloadnumpy-f179ec92d8ddb0dc5f7445255022be5c4765a704.tar.gz
TST: Add Python 3.4 to Tox environments
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini13
1 files changed, 12 insertions, 1 deletions
diff --git a/tox.ini b/tox.ini
index f84910299..a8f64f32d 100644
--- a/tox.ini
+++ b/tox.ini
@@ -25,7 +25,10 @@
# installed and that they can be run as 'python2.7', 'python3.3', etc.
[tox]
-envlist = py26,py27,py32,py33,py27-monolithic,py33-monolithic,py27-not-relaxed-strides,py33-not-relaxed-strides
+envlist =
+ py26,py27,py32,py33,py34,
+ py27-monolithic,py33-monolithic,py34-monolithic,
+ py27-not-relaxed-strides,py33-not-relaxed-strides,py34-not-relaxed-strides
[testenv]
deps=
@@ -41,6 +44,10 @@ env=NPY_SEPARATE_COMPILATION=0
basepython=python3.3
env=NPY_SEPARATE_COMPILATION=0
+[testenv:py34-monolithic]
+basepython=python3.4
+env=NPY_SEPARATE_COMPILATION=0
+
[testenv:py27-not-relaxed-strides]
basepython=python2.7
env=NPY_RELAXED_STRIDES_CHECKING=0
@@ -49,6 +56,10 @@ env=NPY_RELAXED_STRIDES_CHECKING=0
basepython=python3.3
env=NPY_RELAXED_STRIDES_CHECKING=0
+[testenv:py34-not-relaxed-strides]
+basepython=python3.4
+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:
[testenv:debug]