From 7245e300e61ccbf7605245916ac3d58594383668 Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Fri, 11 Dec 2015 21:39:41 +0100 Subject: [PATCH] Avoid setenv substitution in tox.ini. This works around a bug with tox 2.3.0: https://bitbucket.org/hpk42/tox/issues/294/ --- tox.ini | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tox.ini b/tox.ini index 9ae5fb92b..6c59e2988 100644 --- a/tox.ini +++ b/tox.ini @@ -116,8 +116,8 @@ commands = [testenv:pylint-tip] basepython = python3 skip_install = true -setenv = {[testenv:pylint]setenv} -passenv = {[testenv:pylint]passenv} +setenv = PYTHONPATH={toxinidir}/scripts/dev +passenv = deps = {[testenv]deps} {[testenv:misc]deps}