|
13 | 13 | # - Use pip to install the numpy sdist into the virtualenv
|
14 | 14 | # - Run the numpy tests
|
15 | 15 | # To run against a specific subset of Python versions, use:
|
16 |
| -# tox -e py24,py27 |
| 16 | +# tox -e py27 |
17 | 17 |
|
18 | 18 | # Extra arguments will be passed to test-installed-numpy.py. To run
|
19 | 19 | # the full testsuite:
|
|
22 | 22 | # tox -- -v
|
23 | 23 |
|
24 | 24 | # Tox assumes that you have appropriate Python interpreters already
|
25 |
| -# installed and that they can be run as 'python2.4', 'python2.5', etc. |
| 25 | +# installed and that they can be run as 'python2.7', 'python3.3', etc. |
26 | 26 |
|
27 | 27 | [tox]
|
28 |
| -envlist = py24,py25,py26,py27,py31,py32,py27-separate,py32-separate |
| 28 | +envlist = py26,py27,py32,py33,py27-monolithic,py33-monolithic,py27-relaxed-strides,py33-relaxed-strides |
29 | 29 |
|
30 | 30 | [testenv]
|
31 | 31 | deps=
|
32 | 32 | nose
|
33 | 33 | changedir={envdir}
|
34 |
| -commands=python {toxinidir}/tools/test-installed-numpy.py {posargs:} |
| 34 | +commands={envpython} {toxinidir}/tools/test-installed-numpy.py --mode=full {posargs:} |
35 | 35 |
|
36 |
| -[testenv:py27-separate] |
| 36 | +[testenv:py27-monolithic] |
37 | 37 | basepython=python2.7
|
38 |
| -env=NPY_SEPARATE_COMPILATION=1 |
| 38 | +env=NPY_SEPARATE_COMPILATION=0 |
39 | 39 |
|
40 |
| -[testenv:py32-separate] |
41 |
| -basepython=python3.2 |
42 |
| -env=NPY_SEPARATE_COMPILATION=1 |
| 40 | +[testenv:py33-monolithic] |
| 41 | +basepython=python3.3 |
| 42 | +env=NPY_SEPARATE_COMPILATION=0 |
| 43 | + |
| 44 | +[testenv:py27-relaxed-strides] |
| 45 | +basepython=python2.7 |
| 46 | +env=NPY_RELAXED_STRIDES_CHECKING=1 |
| 47 | + |
| 48 | +[testenv:py33-relaxed-strides] |
| 49 | +basepython=python3.3 |
| 50 | +env=NPY_RELAXED_STRIDES_CHECKING=1 |
43 | 51 |
|
44 | 52 | # Not run by default. Set up the way you want then use 'tox -e debug'
|
45 | 53 | # if you want it:
|
46 | 54 | [testenv:debug]
|
47 |
| -basepython=PYTHON-WITH-DEBUG-INFO |
48 |
| -commands=gdb --args {envpython} {toxinidir}/tools/test-installed-numpy.py {posargs:} |
| 55 | +basepython=python-dbg |
| 56 | +commands=gdb --args {envpython} {toxinidir}/tools/test-installed-numpy.py --mode=full {posargs:} |
0 commit comments