Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
with
2 additions
and
2 deletions.
-
+2
−2
.ci/ctest2ci.py
|
@@ -108,7 +108,7 @@ def start_test_fold(): |
|
|
in_failure = True |
|
|
|
|
|
if not in_failing_test and re.search('[0-9]+% tests passed, [0-9]+ tests failed out of', updated_line): |
|
|
tests_failing = re.match(r'([0-9]+) tests failed', updated_line).group(1) |
|
|
tests_failing = re.match(r'.* ([0-9]+) tests failed', updated_line).group(1) |
|
|
updated_line += '\n::set-output name=TESTS_FAILING::{}'.format(tests_failing) |
|
|
end_fold() |
|
|
|
|
@@ -118,7 +118,7 @@ def start_test_fold(): |
|
|
if re.match('Submit files', updated_line): |
|
|
start_fold('submit') |
|
|
elif re.search('Test results submitted to', updated_line): |
|
|
cdash_url = re.match(r'(http.*)$', updated_line).group(1) |
|
|
cdash_url = re.match(r'.*(http.*)$', updated_line).group(1) |
|
|
updated_line += '\n::set-output name=CDASH_URL::{}'.format(cdash_url) |
|
|
end_fold() |
|
|
|
|
|
You can’t perform that action at this time.
You signed in with another tab or window. Reload to refresh your session.
You signed out in another tab or window. Reload to refresh your session.