diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2016-12-12 21:14:34 -0500 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2016-12-12 21:14:34 -0500 |
commit | d9c9284e19ce475c2366b279dd4db82a2751a571 (patch) | |
tree | aa75bb21f9090e10a687b3ed97aa8ab0a10d4057 | |
parent | 357b7c659b6893dec4145d492084217b9317bca1 (diff) | |
download | external_python_setuptools-d9c9284e19ce475c2366b279dd4db82a2751a571.tar.gz external_python_setuptools-d9c9284e19ce475c2366b279dd4db82a2751a571.tar.bz2 external_python_setuptools-d9c9284e19ce475c2366b279dd4db82a2751a571.zip |
Additionally, in test_develop, ensure that pkg_resources is importable. Ref #885.
-rw-r--r-- | setuptools/tests/test_develop.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/setuptools/tests/test_develop.py b/setuptools/tests/test_develop.py index d1e40929..430a07e6 100644 --- a/setuptools/tests/test_develop.py +++ b/setuptools/tests/test_develop.py @@ -165,3 +165,9 @@ class TestNamespaces: env = dict(PYTHONPATH=str(target)) subprocess.check_call(try_import, env=env) + # additionally ensure that pkg_resources import works + pkg_resources_imp = [ + sys.executable, + '-c', 'import pkg_resources', + ] + subprocess.check_call(pkg_resources_imp, env=env) |