Commit d9c9284e authored by Jason R. Coombs's avatar Jason R. Coombs

Additionally, in test_develop, ensure that pkg_resources is importable. Ref #885.

parent 357b7c65
......@@ -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)
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment