Revert "fix test_entrypoints_work test"

This reverts commit ace0c16531.
This commit is contained in:
Pradyun Gedam 2020-05-12 05:25:18 +05:30
parent 4297b8d9b7
commit c0641464df
No known key found for this signature in database
GPG Key ID: DA17C4B29CB32E4B
1 changed files with 1 additions and 3 deletions

View File

@ -27,9 +27,7 @@ def test_entrypoints_work(entrypoint, script):
)
""".format(entrypoint)))
# expect_temp=True, because pip install calls setup.py which
# in turn creates fake_pkg.egg-info.
script.pip("install", "-vvv", str(fake_pkg), expect_temp=True)
script.pip("install", "-vvv", str(fake_pkg))
result = script.pip("-V")
result2 = script.run("fake_pip", "-V", allow_stderr_warning=True)
assert result.stdout == result2.stdout