Skip to content

Commit

Permalink
Avoid running evergreen only tests on raspi modular and non-evergreen…
Browse files Browse the repository at this point in the history
… android

Change-Id: Iac8f19a4085b59e4930477f7d74c097b23aa9084
  • Loading branch information
niranjanyardi committed Nov 3, 2023
1 parent 098af6c commit 400bfe9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions starboard/android/shared/test_filters.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
1 change: 1 addition & 0 deletions starboard/raspi/shared/test_filters.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 400bfe9

Please sign in to comment.