| 123456789101112131415161718192021222324252627282930313233343536373839 |
- [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
|