From f2a3eb00b90eac2a352e4d935d5e8d0748622a3f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20=C5=A0pa=C4=8Dek?= Date: Tue, 3 Oct 2023 11:15:39 +0200 Subject: [PATCH] Generate and capture JUnit XML output from cross-version-config-tests --- .gitlab-ci.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 28510aad09..cfd11105b9 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -376,16 +376,19 @@ cross-version-config-tests: # intends to detect obvious backward compatibility issues with the latter. - sed -i -E "s|(export TOP_BUILDDIR)=.*|\1=${CI_PROJECT_DIR}|" conf.sh - > - "$PYTEST" --setup-only -n "${TEST_PARALLEL_JOBS:-1}" + "$PYTEST" --setup-only --junit-xml="$CI_PROJECT_DIR"/junit.xml -n "${TEST_PARALLEL_JOBS:-1}" needs: - job: autoreconf artifacts: true artifacts: + reports: + junit: junit.xml paths: - bind-* + - junit.xml untracked: true expire_in: "1 day" - when: on_failure + when: always .display_pytest_failures: &display_pytest_failures - awk '/^=+ FAILURES =+/{flag=1;next}/^=+.*=+$/{flag=0}flag' bin/tests/system/pytest.out.txt || true