aboutsummaryrefslogtreecommitdiffstats
path: root/setuptools/command/test.py
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2020-03-07 15:41:51 -0500
committerJason R. Coombs <jaraco@jaraco.com>2020-03-07 15:41:51 -0500
commitda94b05088d9bddb6ba0cd5a1b236e99985816c0 (patch)
tree8a78ccd2d459e7702d914cb35e29f5f661e5bf5a /setuptools/command/test.py
parent6980b9c8fed113f1046099924e16287662beff5f (diff)
parent25edd1951d8d44c34578c926f5c20ed3d452587b (diff)
downloadexternal_python_setuptools-da94b05088d9bddb6ba0cd5a1b236e99985816c0.tar.gz
external_python_setuptools-da94b05088d9bddb6ba0cd5a1b236e99985816c0.tar.bz2
external_python_setuptools-da94b05088d9bddb6ba0cd5a1b236e99985816c0.zip
Merge remote-tracking branch 'origin/master' into debt/remove-features
Diffstat (limited to 'setuptools/command/test.py')
-rw-r--r--setuptools/command/test.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/setuptools/command/test.py b/setuptools/command/test.py
index f6470e9c..2d83967d 100644
--- a/setuptools/command/test.py
+++ b/setuptools/command/test.py
@@ -129,7 +129,8 @@ class test(Command):
@contextlib.contextmanager
def project_on_sys_path(self, include_dists=[]):
- with_2to3 = not six.PY2 and getattr(self.distribution, 'use_2to3', False)
+ with_2to3 = not six.PY2 and getattr(
+ self.distribution, 'use_2to3', False)
if with_2to3:
# If we run 2to3 we can not do this inplace: