[PATCH v3 1/4] create_new_execution_file_from_tags: change tag argument
Ali Alnubani
alialnu at nvidia.com
Thu Feb 3 14:14:52 CET 2022
> -----Original Message-----
> From: ohilyard at iol.unh.edu <ohilyard at iol.unh.edu>
> Sent: Tuesday, February 1, 2022 11:36 PM
> To: ci at dpdk.org; Ali Alnubani <alialnu at nvidia.com>
> Cc: Owen Hilyard <ohilyard at iol.unh.edu>
> Subject: [PATCH v3 1/4] create_new_execution_file_from_tags: change tag
> argument
>
[..]
> @@ -98,7 +101,11 @@ if __name__ == '__main__':
> if execution_plan != 'DEFAULT':
> test_allowlist = parse_comma_delimited_list_from_string(
> template_execution_file_parser[execution_plan]['test_suites'])
> - tests_to_run = list(set(test_allowlist).intersection(tests))
> + if len(tests) != 0:
> + tests_to_run = list(set(test_allowlist).intersection(tests))
> + else:
> + tests_to_run = [entry for entry in test_allowlist if entry != '']
> +
There are empty spaces in this line.
More information about the ci
mailing list