We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1a52f11 commit 5be48b9Copy full SHA for 5be48b9
setuptools/tests/test_setuptools.py
@@ -307,3 +307,10 @@ def test_its_own_wheel_does_not_contain_tests(setuptools_wheel):
307
308
for member in contents:
309
assert '/tests/' not in member
310
+
311
312
+def test_wheel_includes_cli_scripts(setuptools_wheel):
313
+ with ZipFile(setuptools_wheel) as zipfile:
314
+ contents = [f.replace(os.sep, '/') for f in zipfile.namelist()]
315
316
+ assert any('cli-64.exe' in member for member in contents)
0 commit comments