fix black

This commit is contained in:
Ilya Yatsishin 2022-06-02 16:13:52 +02:00
parent a57432659a
commit 2ea437de32
2 changed files with 8 additions and 7 deletions

View File

@ -361,11 +361,11 @@ CI_CONFIG = {
},
"Performance Comparison": {
"required_build": "package_release",
"test_grep_exclude_filter": ""
"test_grep_exclude_filter": "",
},
"Performance Comparison Aarch64": {
"required_build": "package_aarch64",
"test_grep_exclude_filter": "constant_column_search"
"test_grep_exclude_filter": "constant_column_search",
},
},
} # type: dict

View File

@ -112,13 +112,14 @@ if __name__ == "__main__":
else:
check_name_with_group = check_name
test_grep_exclude_filter = CI_CONFIG["tests_config"][check_name]["test_grep_exclude_filter"]
test_grep_exclude_filter = CI_CONFIG["tests_config"][check_name][
"test_grep_exclude_filter"
]
if test_grep_exclude_filter:
docker_env += (
f" -e CHPC_TEST_GREP_EXCLUDE={test_grep_exclude_filter}"
docker_env += f" -e CHPC_TEST_GREP_EXCLUDE={test_grep_exclude_filter}"
logging.info(
f"Fill fliter our performance tests by grep -v {test_grep_exclude_filter}"
)
logging.info(f"Fill fliter our performance tests by grep -v {test_grep_exclude_filter}")
rerun_helper = RerunHelper(gh, pr_info, check_name_with_group)
if rerun_helper.is_already_finished_by_status():