aboutsummaryrefslogtreecommitdiffstats
path: root/setuptools/command/test.py
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2014-12-31 12:35:32 -0500
committerJason R. Coombs <jaraco@jaraco.com>2014-12-31 12:35:32 -0500
commit80a28fa8c044ccb74e4ae54544be8c449ebd03e8 (patch)
treea0e8f9a1fa48704f535b5597461dfc4c381d1035 /setuptools/command/test.py
parenta8cc5bd6104fe69756ae188e1482eedd5840d34b (diff)
downloadexternal_python_setuptools-80a28fa8c044ccb74e4ae54544be8c449ebd03e8.tar.gz
external_python_setuptools-80a28fa8c044ccb74e4ae54544be8c449ebd03e8.tar.bz2
external_python_setuptools-80a28fa8c044ccb74e4ae54544be8c449ebd03e8.zip
Use underlying invocation of ._load directly
Diffstat (limited to 'setuptools/command/test.py')
-rw-r--r--setuptools/command/test.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/setuptools/command/test.py b/setuptools/command/test.py
index 1038da71..2bf5cb16 100644
--- a/setuptools/command/test.py
+++ b/setuptools/command/test.py
@@ -172,4 +172,4 @@ class test(Command):
if val is None:
return
parsed = EntryPoint.parse("x=" + val)
- return parsed.load(require=False)()
+ return parsed._load()()