From fe74ad89825c49430832b58a934de47df222a87a Mon Sep 17 00:00:00 2001 From: mtaneja Date: Tue, 26 Jul 2022 16:35:28 -0400 Subject: [PATCH] Updating Tern's continuous integration testing This commits tries to run all the tests no matter what changes any specific commit contains. This way we can validate the commit fully Work towards: 933 Signed-off-by: mtaneja --- ci/test_files_touched.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/ci/test_files_touched.py b/ci/test_files_touched.py index b60568a2..c6f233bd 100644 --- a/ci/test_files_touched.py +++ b/ci/test_files_touched.py @@ -151,8 +151,7 @@ alltests = [] for change in changes: for check, _ in test_suite.items(): - if check.match(change): - alltests.extend(test_suite[check]) + alltests.extend(test_suite[check]) # Remove duplicate tests tests = list(set(alltests))