From 3d9a706ba0b3c2fae2f298b039415f2d5f1698f2 Mon Sep 17 00:00:00 2001 From: Bastien Nocera Date: Thu, 28 Apr 2022 10:09:15 +0200 Subject: [PATCH] ci: Fail CI when tests are skipped --- .ci/fail_skipped_tests.py | 25 +++++++++++++++++++++++++ .gitlab-ci.yml | 1 + 2 files changed, 26 insertions(+) create mode 100755 .ci/fail_skipped_tests.py diff --git a/.ci/fail_skipped_tests.py b/.ci/fail_skipped_tests.py new file mode 100755 index 0000000..6349921 --- /dev/null +++ b/.ci/fail_skipped_tests.py @@ -0,0 +1,25 @@ +#!/usr/bin/python3 + +from lxml import etree +import sys + +def format_title(title): + """Put title in a box""" + box = { + 'tl': '╔', 'tr': '╗', 'bl': '╚', 'br': '╝', 'h': '═', 'v': '║', + } + hline = box['h'] * (len(title) + 2) + + return '\n'.join([ + f"{box['tl']}{hline}{box['tr']}", + f"{box['v']} {title} {box['v']}", + f"{box['bl']}{hline}{box['br']}", + ]) + +tree = etree.parse(sys.argv[1]) +for suite in tree.xpath('/testsuites/testsuite'): + skipped = suite.get('skipped') + if int(skipped) != 0: + print(format_title('Tests were skipped when they should not have been. All the tests must be run in the CI'), + end='\n\n', flush=True) + sys.exit(1) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 592a89d..6050c5c 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -28,6 +28,7 @@ build_stable: - ninja -v -C _build uninstall - ninja -v -C _build dist - meson test -C _build + - .ci/fail_skipped_tests.py _build/meson-logs/testlog.junit.xml artifacts: when: always paths: