aboutsummaryrefslogtreecommitdiffstats
path: root/setuptools/command/test.py
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2015-01-05 14:21:41 -0500
committerJason R. Coombs <jaraco@jaraco.com>2015-01-05 14:21:41 -0500
commit92a553d3adeb431cdf92b136ac9ccc3f2ef98bf1 (patch)
tree5fc6312e181a4dea87a02e700b49c065283c7f9a /setuptools/command/test.py
parent7fa87f2fbdf84d414e069ca96f6c6d860d7e0505 (diff)
downloadexternal_python_setuptools-92a553d3adeb431cdf92b136ac9ccc3f2ef98bf1.tar.gz
external_python_setuptools-92a553d3adeb431cdf92b136ac9ccc3f2ef98bf1.tar.bz2
external_python_setuptools-92a553d3adeb431cdf92b136ac9ccc3f2ef98bf1.zip
Add EntryPoint.resolve and deprecate most usage of EntryPoint.load. Removed EntryPoint._load.11.3
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 2bf5cb16..42689f70 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()()
+ return parsed.resolve()()