mirror of
https://github.com/python/cpython.git
synced 2026-04-13 23:31:02 +00:00
[3.14] gh-144492: Fix process_changed_files outputs for reusable-{macos, wasi}.yml (GH-144518) (#144635)
gh-144492: Fix `process_changed_files` outputs for `reusable-{macos, wasi}.yml` (GH-144518)
Fix `process_changed_files` double-processing reusable-{macos, wasi] ending up with incorrect outputs
(cherry picked from commit fd190d1fa1)
Co-authored-by: Stan Ulbrych <89152624+StanFromIreland@users.noreply.github.com>
This commit is contained in:
parent
9cc8e4948c
commit
2cc0720bdb
1 changed files with 3 additions and 0 deletions
|
|
@ -232,9 +232,12 @@ def process_changed_files(changed_files: Set[Path]) -> Outputs:
|
|||
if file.name == "reusable-windows-msi.yml":
|
||||
run_windows_msi = True
|
||||
if file.name == "reusable-macos.yml":
|
||||
run_tests = True
|
||||
platforms_changed.add("macos")
|
||||
if file.name == "reusable-wasi.yml":
|
||||
run_tests = True
|
||||
platforms_changed.add("wasi")
|
||||
continue
|
||||
|
||||
if not doc_file and file not in RUN_TESTS_IGNORE:
|
||||
run_tests = True
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue