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.
test_ci_fuzz_stdlib
1 parent 0156133 commit b446092Copy full SHA for b446092
Lib/test/test_tools/test_compute_changes.py
@@ -54,6 +54,8 @@ def test_ci_fuzz_stdlib(self):
54
f = p / "file"
55
elif p.is_file():
56
f = p
57
+ else:
58
+ self.fail(f"LIBRARY_FUZZER_PATHS contains an invalid entry: {p!r}")
59
result = process_changed_files({f})
60
self.assertTrue(result.run_ci_fuzz_stdlib)
61
self.assertTrue(is_fuzzable_library_file(f))
Tools/build/compute-changes.py
@@ -90,7 +90,7 @@
90
# tarfile
91
Path("Lib/tarfile.py"),
92
# tomllib
93
- Path("Modules/tomllib/"),
+ Path("Lib/tomllib/"),
94
# xml
95
Path("Lib/xml/"),
96
Path("Lib/_markupbase.py"),
0 commit comments