| 1234567891011121314151617181920212223242526272829 |
- [tox]
- downloadcache = {toxworkdir}/cache/
- envlist = py27, pypy, py27-noext, pypy-noext, py34, py34-noext, py35, py35-noext
- [testenv]
- commands = make check
- recreate = True
- whitelist_externals = make
- [testenv:py27]
- deps = mock
- [testenv:pypy]
- deps = mock
- [testenv:py27-noext]
- deps = mock
- commands = make check-noextensions
- [testenv:pypy-noext]
- deps = mock
- commands = make check-noextensions
- [testenv:py34-noext]
- commands = make check-noextensions
- [testenv:py35-noext]
- commands = make check-noextensions
|