diff options
author | Nikita Kozlovskiy <[email protected]> | 2023-06-19 11:28:03 +0000 |
---|---|---|
committer | nkozlovskiy <[email protected]> | 2023-06-19 14:28:03 +0300 |
commit | ae3b073bf18da0b90a7c933e688f56d09cd1fd12 (patch) | |
tree | cdb655221d55198ce3ce228e1a6eb990a4486556 /.github/scripts/tests/mute_utils.py | |
parent | cb828d899b578d6d5da199b00750a5276f0004d7 (diff) |
ci: summary extraction as independent step, add functional tests summary
ci: summary extraction as independent step, add functional tests summary
Pull Request resolved: #264
Diffstat (limited to '.github/scripts/tests/mute_utils.py')
-rw-r--r-- | .github/scripts/tests/mute_utils.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/.github/scripts/tests/mute_utils.py b/.github/scripts/tests/mute_utils.py index ac35ff3da2e..21dab3bf46e 100644 --- a/.github/scripts/tests/mute_utils.py +++ b/.github/scripts/tests/mute_utils.py @@ -1,5 +1,6 @@ import operator import xml.etree.ElementTree as ET +from junit_utils import add_junit_property class MutedTestCheck: @@ -63,6 +64,8 @@ def mute_target(node): node.remove(failure) node.append(skipped) + add_junit_property(node, "mute", "automatically muted based on rules") + return True |