[CI] Run all tests when a base test changes (#7010)

This commit is contained in:
Keith Burzinski 2024-07-01 21:06:33 -05:00 committed by GitHub
parent 582386d3a2
commit 83f9664efb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -140,7 +140,10 @@ def get_components(files: list[str], get_dependencies: bool = False):
def main(): def main():
parser = argparse.ArgumentParser() parser = argparse.ArgumentParser()
parser.add_argument( parser.add_argument(
"-c", "--changed", action="store_true", help="Only run on changed files" "-c",
"--changed",
action="store_true",
help="List all components required for testing based on changes",
) )
parser.add_argument( parser.add_argument(
"-b", "--branch", help="Branch to compare changed files against" "-b", "--branch", help="Branch to compare changed files against"
@ -158,7 +161,9 @@ def main():
changed = changed_files(args.branch) changed = changed_files(args.branch)
else: else:
changed = changed_files() changed = changed_files()
files = [f for f in files if f in changed] # If any base test file(s) changed, there's no need to filter out components
if not any("tests/test_build_components" in file for file in changed):
files = [f for f in files if f in changed]
for c in get_components(files, args.changed): for c in get_components(files, args.changed):
print(c) print(c)