From 7f423e875669ee549b1f53f90d2db340b6c957cd Mon Sep 17 00:00:00 2001 From: Mike Bayer Date: Sat, 5 Dec 2015 16:56:53 -0500 Subject: [PATCH] - add ORACLE_HOME to passenv allowing oracle to work w/ tox 2.0 --- tox.ini | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tox.ini b/tox.ini index 07fcdaf4d1..b35ab6e817 100644 --- a/tox.ini +++ b/tox.ini @@ -20,6 +20,11 @@ sitepackages=True # DISABLE_SQLALCHEMY_CEXT are honored usedevelop=False +# tox as of 2.0 blocks all environment variables from the +# outside, unless they are here (or in TOX_TESTENV_PASSENV, +# wildcards OK). Need at least this one. +passenv=ORACLE_HOME + commands= python -m pytest {posargs} -- 2.47.2