diff options
| author | Chris McDonough <chrism@plope.com> | 2015-04-13 10:43:21 -0400 |
|---|---|---|
| committer | Chris McDonough <chrism@plope.com> | 2015-04-13 10:43:21 -0400 |
| commit | 109b2a0b29e0d63a521a91021c736851248ac7d3 (patch) | |
| tree | ab01091e7856aff0eb274d06cab37cf2e3c0ff62 /tox.ini | |
| parent | d7734b0ca17e08fa12f8f8b9d6e44c9ef3aba99e (diff) | |
| download | pyramid-109b2a0b29e0d63a521a91021c736851248ac7d3.tar.gz pyramid-109b2a0b29e0d63a521a91021c736851248ac7d3.tar.bz2 pyramid-109b2a0b29e0d63a521a91021c736851248ac7d3.zip | |
make it possible to run scaffold functests using tox
Diffstat (limited to 'tox.ini')
| -rw-r--r-- | tox.ini | 27 |
1 files changed, 26 insertions, 1 deletions
@@ -2,7 +2,8 @@ envlist = py26,py27,py32,py33,py34,pypy,pypy3, {py2,py3}-docs, - {py2,py3}-cover,coverage + {py2,py3}-cover,coverage, + scaffolds [testenv] # Most of these are defaults but if you specify any you can't fall back @@ -61,3 +62,27 @@ deps = coverage setenv = COVERAGE_FILE=.coverage + +[testenv:py3-scaffolds] +basepython = python3.4 +commands = + python pyramid/scaffolds/tests.py +deps = virtualenv + +[testenv:py2-scaffolds] +basepython = python2.7 +commands = + python pyramid/scaffolds/tests.py +deps = virtualenv + +[testenv:pypy-scaffolds] +basepython = pypy +commands = + python pyramid/scaffolds/tests.py +deps = virtualenv + +[testenv:pypy3-scaffolds] +basepython = pypy3 +commands = + python pyramid/scaffolds/tests.py +deps = virtualenv |
