From ad2a15d5496feb42d655244f1f922b6d61bba87a Mon Sep 17 00:00:00 2001 From: Ivan Grokhotkov Date: Mon, 25 Jul 2022 14:41:51 +0200 Subject: [PATCH] ci: enable artifacts for test_pytest_qemu --- .gitlab/ci/host-test.yml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/.gitlab/ci/host-test.yml b/.gitlab/ci/host-test.yml index b2333592ca..97640cdd57 100644 --- a/.gitlab/ci/host-test.yml +++ b/.gitlab/ci/host-test.yml @@ -442,9 +442,17 @@ test_pytest_qemu: - .host_test_template - .before_script_build_jobs image: $QEMU_IMAGE + artifacts: + when: always + paths: + - XUNIT_RESULT.xml + - pytest_embedded_log/ + reports: + junit: XUNIT_RESULT.xml + expire_in: 1 week script: - run_cmd python tools/ci/ci_build_apps.py . -vv --target esp32 --pytest-apps -m qemu - - pytest --target esp32 -m qemu --embedded-services idf,qemu + - pytest --target esp32 -m qemu --embedded-services idf,qemu --junitxml=XUNIT_RESULT.xml