Merge branch 'two-tests-are-longer-with-analyzer' into many-fixes

This commit is contained in:
Alexey Milovidov 2023-06-27 05:23:23 +02:00
commit e0ac127bdd
3 changed files with 5 additions and 3 deletions

View File

@ -86,7 +86,7 @@ def process_test_log(log_path, broken_tests):
test_name,
"NOT_FAILED",
test_time,
["This test passed. Update broken_tests.txt.\n"],
["This test passed. Update analyzer_tech_debt.txt.\n"],
)
)
else:
@ -205,7 +205,7 @@ if __name__ == "__main__":
parser.add_argument("--in-results-dir", default="/test_output/")
parser.add_argument("--out-results-file", default="/test_output/test_results.tsv")
parser.add_argument("--out-status-file", default="/test_output/check_status.tsv")
parser.add_argument("--broken-tests", default="/broken_tests.txt")
parser.add_argument("--broken-tests", default="/analyzer_tech_debt.txt")
args = parser.parse_args()
broken_tests = list()

View File

@ -124,3 +124,5 @@
02534_s3_cluster_insert_select_schema_inference
02765_parallel_replicas_final_modifier
02784_parallel_replicas_automatic_disabling
02581_share_big_sets_between_mutation_tasks_long
02581_share_big_sets_between_multiple_mutations_tasks_long

View File

@ -108,7 +108,7 @@ def get_run_command(
env_str = " ".join(envs)
volume_with_broken_test = (
f"--volume={repo_tests_path}/broken_tests.txt:/broken_tests.txt"
f"--volume={repo_tests_path}/analyzer_tech_debt.txt:/analyzer_tech_debt.txt"
if "analyzer" in check_name
else ""
)