Navigation Menu

Skip to content

Commit

Permalink
Additionally, in test_develop, ensure that pkg_resources is importabl…
Browse files Browse the repository at this point in the history
…e. Ref #885.
  • Loading branch information
jaraco committed Dec 13, 2016
1 parent 357b7c6 commit d9c9284
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions setuptools/tests/test_develop.py
Expand Up @@ -165,3 +165,9 @@ def test_namespace_package_importable(self, tmpdir):
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)

0 comments on commit d9c9284

Please sign in to comment.