1 new commit in tox: https://bitbucket.org/hpk42/tox/commits/3ed5dc353a99/ Changeset: 3ed5dc353a99 User: hpk42 Date: 2015-07-16 07:42:57+00:00 Summary: Merged in ddriddle/tox/fix_issue_265 (pull request #168)
Fix issue #265 - Pass LD_LIBRARY_PATH by default Affected #: 2 files diff -r 87a9def32696f7ada3b536621f723018ce9667ad -r 3ed5dc353a99acf57859a2dd265b5c2e973480e3 tests/test_config.py --- a/tests/test_config.py +++ b/tests/test_config.py @@ -721,6 +721,7 @@ assert "PATH" in envconfig.passenv assert "PIP_INDEX_URL" in envconfig.passenv assert "LANG" in envconfig.passenv + assert "LD_LIBRARY_PATH" in envconfig.passenv assert "A123A" in envconfig.passenv assert "A123B" in envconfig.passenv diff -r 87a9def32696f7ada3b536621f723018ce9667ad -r 3ed5dc353a99acf57859a2dd265b5c2e973480e3 tox/config.py --- a/tox/config.py +++ b/tox/config.py @@ -386,7 +386,7 @@ itertools.chain.from_iterable( [x.split(' ') for x in value])) - passenv = set(["PATH", "PIP_INDEX_URL", "LANG"]) + passenv = set(["PATH", "PIP_INDEX_URL", "LANG", "LD_LIBRARY_PATH"]) # read in global passenv settings p = os.environ.get("TOX_TESTENV_PASSENV", None) Repository URL: https://bitbucket.org/hpk42/tox/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email. _______________________________________________ pytest-commit mailing list pytest-commit@python.org https://mail.python.org/mailman/listinfo/pytest-commit