8000
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 cfed622 commit 271cfd3Copy full SHA for 271cfd3
tests/smoke/test_dists.py
@@ -31,4 +31,4 @@ def test_sdist_includes_tests(build):
31
32
def test_wheel_excludes_docs_and_tests(build):
33
wheel = zipfile.ZipFile(DIST_DIR / WHEEL_FILE)
34
- assert not any([file.startswith((DOCS_DIR, TEST_DIR)) for file in wheel.namelist()])
+ assert not any(file.startswith((DOCS_DIR, TEST_DIR)) for file in wheel.namelist())
0 commit comments