summaryrefslogtreecommitdiff
path: root/tox.ini
diff options
context:
space:
mode:
authorJason Madden <jamadden@gmail.com>2017-09-11 07:14:45 -0500
committerJason Madden <jamadden@gmail.com>2017-09-11 07:14:45 -0500
commit0a852da59af04f98c50e0cbd8fbd68f2ab5fefbe (patch)
tree757802e6c068db6a17a7fb93a07141994e294e84 /tox.ini
parent2f51b299dd65d4580564695e146fcca83ed945a7 (diff)
downloadzope-security-0a852da59af04f98c50e0cbd8fbd68f2ab5fefbe.tar.gz
Add test environments for ZOPE_WATCH_CHECKERS
They cover both the pure-python and C cases. This modified two existing test environments, but without loss of test coverage (since PyPy will always cover the pure-python case).
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini9
1 files changed, 5 insertions, 4 deletions
diff --git a/tox.ini b/tox.ini
index b39940b..36a065c 100644
--- a/tox.ini
+++ b/tox.ini
@@ -3,7 +3,7 @@ envlist =
# Jython support pending 2.7 support, due 2012-07-15 or so. See:
# http://fwierzbicki.blogspot.com/2012/03/adconion-to-fund-jython-27.html
# py27,pypy,jython,py33,coverage,docs
- py27,py27-pure,pypy,pypy3,py34-pure,py34,py35,py36,coverage,docs
+ py27,py27-watch,pypy,pypy3,py34-watch,py34,py35,py36,coverage,docs
[testenv]
commands =
@@ -12,18 +12,19 @@ commands =
deps =
.[test,docs]
-[testenv:py27-pure]
+[testenv:py27-watch]
basepython =
python2.7
setenv =
PURE_PYTHON = 1
+ ZOPE_WATCH_CHECKERS = 1
PIP_CACHE_DIR = {envdir}/.cache
-[testenv:py34-pure]
+[testenv:py34-watch]
basepython =
python3.4
setenv =
- PURE_PYTHON = 1
+ ZOPE_WATCH_CHECKERS = 1
PIP_CACHE_DIR = {envdir}/.cache
[testenv:coverage]