From 89e1bcd577c756d5aac9fdc9a566ef76dd2de2fe Mon Sep 17 00:00:00 2001 From: Satoshi KOBAYASHI Date: Tue, 10 Nov 2015 15:00:41 +0900 Subject: tox: disable wheel cache Recently, installed packages are cached by Wheel. It is serious when the package is using 2to3 with setuptools (use_2to3) for adapting python3. Because Wheel is caching the contents of translated. If the contents of translated are cached, it can't work properly in python2 Signed-off-by: Satoshi KOBAYASHI Signed-off-by: FUJITA Tomonori --- tox.ini | 1 + 1 file changed, 1 insertion(+) diff --git a/tox.ini b/tox.ini index 0574beaf..60e5d70b 100644 --- a/tox.ini +++ b/tox.ini @@ -5,6 +5,7 @@ envlist = py26,py27,py34,pep8 deps = -U -r{toxinidir}/tools/pip-requires -r{toxinidir}/tools/test-requires + --no-cache-dir usedevelop = True passenv= NOSE_VERBOSE commands = -- cgit v1.2.3