From c27ac3a28e2b5830ee9b89b8b11dac68106c355a Mon Sep 17 00:00:00 2001 From: Uilian Ries Date: Wed, 19 Nov 2025 08:22:30 +0100 Subject: [PATCH] Disable tensorflow example always Signed-off-by: Uilian Ries --- .github/run_ci_tests.py | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/run_ci_tests.py b/.github/run_ci_tests.py index 3e2b0c97..5d6f65ae 100644 --- a/.github/run_ci_tests.py +++ b/.github/run_ci_tests.py @@ -118,12 +118,11 @@ def filter_examples_by_dirs(examples, affected_dirs) -> list: return sorted(set(filtered)) -def filter_exclusions(examples, is_pr) -> list: +def filter_exclusions(examples) -> list: """ FIXME: Filter out broken examples after GitHub Actions migration :param examples: list of example file paths - :param is_pr: bool - whether this is a pull request :returns: filtered list of example file paths """ filtered = [] @@ -135,7 +134,7 @@ def filter_exclusions(examples, is_pr) -> list: continue # FIXME: Filter out tensorflow examples in PRs - if is_pr and "tensorflow" in example: + if "tensorflow" in example: continue filtered.append(example) @@ -205,7 +204,7 @@ def main(): print(example) # FIXME: Filter out some non-working examples in GitHub Actions - examples = filter_exclusions(examples, is_pr) + examples = filter_exclusions(examples) print("\nExamples to run:") for example in examples: