forked from python-greenlet/greenlet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tox.ini
39 lines (32 loc) · 991 Bytes
/
tox.ini
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
[testenv]
commands={envpython} run-tests.py -nq
sitepackages=False
# this is 32 bit only
[testenv:x-py25]
basepython=/usr/bin/python2.5
# test both 32 bit and 64 bit on OS X
[testenv:x-py26]
commands=/usr/bin/arch -i386 {envpython} run-tests.py -qn
/usr/bin/arch -x86_64 {envpython} run-tests.py -qn
basepython=/usr/bin/python2.6
[testenv:x-py27]
commands=/usr/bin/arch -i386 {envpython} run-tests.py -qn
/usr/bin/arch -x86_64 {envpython} run-tests.py -qn
basepython=/usr/bin/python2.7
# test with specific gcc version on OS X
[testenv:x-py26-gcc40]
commands=/usr/bin/arch -i386 {envpython} run-tests.py -qn
/usr/bin/arch -x86_64 {envpython} run-tests.py -qn
basepython=/usr/bin/python2.6
setenv=
CC=gcc-4.0
[testenv:x-py26-gcc42]
commands=/usr/bin/arch -i386 {envpython} run-tests.py -qn
/usr/bin/arch -x86_64 {envpython} run-tests.py -qn
basepython=/usr/bin/python2.6
setenv= CC=gcc-4.2
[testenv:docs]
deps=docutils
sphinx
commands=make html
changedir={toxinidir}/doc