From 400bfe98b09db2686360ff392e19f1276717d7ed Mon Sep 17 00:00:00 2001 From: Niranjan Yardi Date: Fri, 3 Nov 2023 11:49:42 -0700 Subject: [PATCH] Avoid running evergreen only tests on raspi modular and non-evergreen android Change-Id: Iac8f19a4085b59e4930477f7d74c097b23aa9084 --- starboard/android/shared/test_filters.py | 1 + starboard/raspi/shared/test_filters.py | 1 + 2 files changed, 2 insertions(+) diff --git a/starboard/android/shared/test_filters.py b/starboard/android/shared/test_filters.py index 39274720f7a1..3ed3385009c1 100644 --- a/starboard/android/shared/test_filters.py +++ b/starboard/android/shared/test_filters.py @@ -98,6 +98,7 @@ class TestFilters(object): def GetTestFilters(self): filters = [] + filters.update(test_filter.EVERGREEN_ONLY_TESTS) for target, tests in _FILTERED_TESTS.items(): filters.extend(test_filter.TestFilter(target, test) for test in tests) return filters diff --git a/starboard/raspi/shared/test_filters.py b/starboard/raspi/shared/test_filters.py index 21a428f06ec2..78c1c6d5f5be 100644 --- a/starboard/raspi/shared/test_filters.py +++ b/starboard/raspi/shared/test_filters.py @@ -57,6 +57,7 @@ class TestFilters(object): def GetTestFilters(self): filters = [] + _FILTERED_TESTS.update(test_filter.EVERGREEN_ONLY_TESTS) for target, tests in _FILTERED_TESTS.items(): filters.extend(test_filter.TestFilter(target, test) for test in tests) return filters