We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 3ff2513 + 8d38b37 commit b3aced9Copy full SHA for b3aced9
tests/functional/test_uninstall.py
@@ -276,7 +276,9 @@ def test_uninstall_easy_installed_console_scripts(script):
276
"""
277
Test uninstalling package with console_scripts that is easy_installed.
278
279
- result = script.easy_install('discover')
+ # setuptools >= 42.0.0 deprecates easy_install and prints a warning when
280
+ # used
281
+ result = script.easy_install('discover', allow_stderr_warning=True)
282
assert script.bin / 'discover' + script.exe in result.files_created, (
283
sorted(result.files_created.keys())
284
)
0 commit comments