https://github.com/python/cpython/commit/a4d9d6483fba5582a0dd44f600c36b02cdc171f7
commit: a4d9d6483fba5582a0dd44f600c36b02cdc171f7
branch: main
author: Chris Eibl <[email protected]>
committer: hugovk <[email protected]>
date: 2026-04-07T12:02:15+03:00
summary:

GH-145762: Fix test_ci_fuzz_stdlib for source archive builds (#145778)

Co-authored-by: Stan Ulbrych <[email protected]>
Co-authored-by: Hugo van Kemenade <[email protected]>

files:
M Lib/test/test_tools/test_compute_changes.py

diff --git a/Lib/test/test_tools/test_compute_changes.py 
b/Lib/test/test_tools/test_compute_changes.py
index 351fb06a885006..eb1ecd447a7ce0 100644
--- a/Lib/test/test_tools/test_compute_changes.py
+++ b/Lib/test/test_tools/test_compute_changes.py
@@ -55,7 +55,7 @@ def test_ci_fuzz_stdlib(self):
                     elif p.is_file():
                         f = p
                     else:
-                        self.fail(f"LIBRARY_FUZZER_PATHS contains an invalid 
entry: {p!r}")
+                        continue
                     result = process_changed_files({f})
                     self.assertTrue(result.run_ci_fuzz_stdlib)
                     self.assertTrue(is_fuzzable_library_file(f))

_______________________________________________
Python-checkins mailing list -- [email protected]
To unsubscribe send an email to [email protected]
https://mail.python.org/mailman3//lists/python-checkins.python.org
Member address: [email protected]

Reply via email to