summaryrefslogtreecommitdiff
path: root/tox.ini
diff options
context:
space:
mode:
authorChris McDonough <chrism@plope.com>2015-04-13 10:43:21 -0400
committerChris McDonough <chrism@plope.com>2015-04-13 10:43:21 -0400
commit109b2a0b29e0d63a521a91021c736851248ac7d3 (patch)
treeab01091e7856aff0eb274d06cab37cf2e3c0ff62 /tox.ini
parentd7734b0ca17e08fa12f8f8b9d6e44c9ef3aba99e (diff)
downloadpyramid-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.ini27
1 files changed, 26 insertions, 1 deletions
diff --git a/tox.ini b/tox.ini
index e0f99e7f6..e0ef2277b 100644
--- a/tox.ini
+++ b/tox.ini
@@ -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