diff options
author | Alex Willmer <alex@moreati.org.uk> | 2015-08-04 18:44:39 +0100 |
---|---|---|
committer | Alex Willmer <alex@moreati.org.uk> | 2015-08-04 18:44:39 +0100 |
commit | f179ec92d8ddb0dc5f7445255022be5c4765a704 (patch) | |
tree | 0fa5319d4dee3f6573029d9f9cb53716ae93d7f4 /tox.ini | |
parent | 4553701b5d03efb5155ac6de7f439d372726caf6 (diff) | |
download | numpy-f179ec92d8ddb0dc5f7445255022be5c4765a704.tar.gz |
TST: Add Python 3.4 to Tox environments
Diffstat (limited to 'tox.ini')
-rw-r--r-- | tox.ini | 13 |
1 files changed, 12 insertions, 1 deletions
@@ -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] |