summaryrefslogtreecommitdiffstats
path: root/.github/scripts/tests
diff options
context:
space:
mode:
authorKirill Rysin <[email protected]>2025-02-16 19:26:01 +0100
committerGitHub <[email protected]>2025-02-16 18:26:01 +0000
commite03ee598f8925309a8d1aaed2f43f71bb9db5a68 (patch)
tree63214c4390f202d1727e0a93a2ab24781f6e3463 /.github/scripts/tests
parent7c2a68ce366705298c96dbdbdc50e9b6ae065399 (diff)
Test analytics: fix monitoring calculations + add days in skip counter (#14620)
Diffstat (limited to '.github/scripts/tests')
-rw-r--r--.github/scripts/tests/get_test_history.py12
-rwxr-xr-x.github/scripts/tests/update_mute_issues.py2
2 files changed, 10 insertions, 4 deletions
diff --git a/.github/scripts/tests/get_test_history.py b/.github/scripts/tests/get_test_history.py
index ad2fe187b00..06d4c323725 100644
--- a/.github/scripts/tests/get_test_history.py
+++ b/.github/scripts/tests/get_test_history.py
@@ -59,9 +59,15 @@ def get_test_history(test_names_array, last_n_runs_of_test_amount, build_type):
ROW_NUMBER() OVER (PARTITION BY test_name ORDER BY run_timestamp DESC) AS rn
FROM
`test_results/test_runs_column`
- where (job_name ='Nightly-run' or job_name like 'Postcommit%') and
- build_type = $build_type and
- suite_folder ||'/' || test_name in $test_names
+ where job_name in (
+ 'Nightly-run',
+ 'Regression-run',
+ 'Regression-whitelist-run',
+ 'Postcommit_relwithdebinfo',
+ 'Postcommit_asan'
+ )
+ and build_type = $build_type
+ and suite_folder ||'/' || test_name in $test_names
and status != 'skipped'
);
diff --git a/.github/scripts/tests/update_mute_issues.py b/.github/scripts/tests/update_mute_issues.py
index c72110af3de..7ae751272e4 100755
--- a/.github/scripts/tests/update_mute_issues.py
+++ b/.github/scripts/tests/update_mute_issues.py
@@ -1,7 +1,7 @@
import os
import re
import requests
-from github import Github
+from github import Github #pip3 install PyGithub
from urllib.parse import quote, urlencode