1 new commit in tox:

https://bitbucket.org/hpk42/tox/commits/ea5e249649c3/
Changeset:   ea5e249649c3
User:        hpk42
Date:        2015-06-03 11:29:33+00:00
Summary:     add SYSTEMDRIVE into default passenv on windows to allow pip6 to 
work.
Thanks Michael Krause.
Affected #:  5 files

diff -r c1c7775d628e30e051a849fd775b8e56f4a168e5 -r 
ea5e249649c30bd6bbf68b45c6b3a6f71149ddb8 CHANGELOG
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,8 +1,12 @@
-unreleased
+2.0.2
 ----------
 
-- tox now passes the LANG variable from the tox invocation environment to the
-  test environment.
+- fix issue247: tox now passes the LANG variable from the tox invocation 
+  environment to the test environment by default.
+
+- add SYSTEMDRIVE into default passenv on windows to allow pip6 to work.
+  Thanks Michael Krause.
+
 
 2.0.1
 -----------

diff -r c1c7775d628e30e051a849fd775b8e56f4a168e5 -r 
ea5e249649c30bd6bbf68b45c6b3a6f71149ddb8 setup.py
--- a/setup.py
+++ b/setup.py
@@ -48,7 +48,7 @@
         description='virtualenv-based automation of test activities',
         long_description=open("README.rst").read(),
         url='http://tox.testrun.org/',
-        version='2.0.1',
+        version='2.0.2',
         license='http://opensource.org/licenses/MIT',
         platforms=['unix', 'linux', 'osx', 'cygwin', 'win32'],
         author='holger krekel',

diff -r c1c7775d628e30e051a849fd775b8e56f4a168e5 -r 
ea5e249649c30bd6bbf68b45c6b3a6f71149ddb8 tests/test_config.py
--- a/tests/test_config.py
+++ b/tests/test_config.py
@@ -709,6 +709,7 @@
         envconfig = config.envconfigs['python']
         if plat == "win32":
             assert "PATHEXT" in envconfig.passenv
+            assert "SYSTEMDRIVE" in envconfig.passenv
             assert "SYSTEMROOT" in envconfig.passenv
             assert "TEMP" in envconfig.passenv
             assert "TMP" in envconfig.passenv

diff -r c1c7775d628e30e051a849fd775b8e56f4a168e5 -r 
ea5e249649c30bd6bbf68b45c6b3a6f71149ddb8 tox/__init__.py
--- a/tox/__init__.py
+++ b/tox/__init__.py
@@ -1,5 +1,5 @@
 #
-__version__ = '2.0.1'
+__version__ = '2.0.2'
 
 from .hookspecs import hookspec, hookimpl  # noqa
 

diff -r c1c7775d628e30e051a849fd775b8e56f4a168e5 -r 
ea5e249649c30bd6bbf68b45c6b3a6f71149ddb8 tox/config.py
--- a/tox/config.py
+++ b/tox/config.py
@@ -394,6 +394,7 @@
         # but this leads to very long paths when run with jenkins
         # so we just pass it on by default for now.
         if sys.platform == "win32":
+            passenv.add("SYSTEMDRIVE") # needed for pip6
             passenv.add("SYSTEMROOT")  # needed for python's crypto module
             passenv.add("PATHEXT")     # needed for discovering executables
             passenv.add("TEMP")

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

Reply via email to