summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGES.rst3
-rw-r--r--tox.ini3
2 files changed, 6 insertions, 0 deletions
diff --git a/CHANGES.rst b/CHANGES.rst
index 0cd06d3..25fb158 100644
--- a/CHANGES.rst
+++ b/CHANGES.rst
@@ -4,6 +4,9 @@ Changes
4.3.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 056ca4a..f4e5734 100644
--- a/tox.ini
+++ b/tox.ini
@@ -44,18 +44,21 @@ basepython =
python3.4
setenv =
PURE_PYTHON = 1
+ PIP_CACHE_DIR = {envdir}/.cache
[testenv:py35-pure]
basepython =
python3.5
setenv =
PURE_PYTHON = 1
+ PIP_CACHE_DIR = {envdir}/.cache
[testenv:py27-pure]
basepython =
python3.4
setenv =
PURE_PYTHON = 1
+ PIP_CACHE_DIR = {envdir}/.cache
[testenv:coverage]
usedevelop = true