Skip to content

Commit

Permalink
TST: Add Python 3.4 to Tox environments
Browse files Browse the repository at this point in the history
  • Loading branch information
moreati committed Aug 4, 2015
1 parent 4553701 commit f179ec9
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -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=
Expand All @@ -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
Expand All @@ -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]
Expand Down

0 comments on commit f179ec9

Please sign in to comment.