summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGES.rst3
-rw-r--r--tox.ini4
2 files changed, 6 insertions, 1 deletions
diff --git a/CHANGES.rst b/CHANGES.rst
index c79392f..2766bc7 100644
--- a/CHANGES.rst
+++ b/CHANGES.rst
@@ -4,6 +4,9 @@ Changes
4.1.0 (unreleased)
------------------
+- When testing ``PURE_PYTHON`` environments under ``tox``, avoid poisoning
+ the user's global wheel cache.
+
- Drop support for Python 2.6 and 3.2.
- Add support for Python 3.5.
diff --git a/tox.ini b/tox.ini
index c57c86a..40180bc 100644
--- a/tox.ini
+++ b/tox.ini
@@ -15,19 +15,21 @@ deps =
zope.proxy
zope.testrunner
commands =
- python setup.py test -q
+ python setup.py -q test -q
[testenv:py27-pure]
basepython =
python2.7
setenv =
PURE_PYTHON = 1
+ PIP_CACHE_DIR = {envdir}/.cache
[testenv:py33-pure]
basepython =
python3.3
setenv =
PURE_PYTHON = 1
+ PIP_CACHE_DIR = {envdir}/.cache
[testenv:coverage]
basepython =