From 28067cdf8319092b2bf2fbea2cfaf0517c82c5a5 Mon Sep 17 00:00:00 2001 From: Tellicious Date: Mon, 28 Oct 2024 08:07:21 +0100 Subject: [PATCH] Changed unit tests XML report name --- .github/workflows/runTests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/runTests.yml b/.github/workflows/runTests.yml index 7697d31..d3b66e8 100644 --- a/.github/workflows/runTests.yml +++ b/.github/workflows/runTests.yml @@ -39,7 +39,7 @@ jobs: run: cmake --build ${{github.workspace}}/build -j 10 - name: Test (output to XML) - run: CMOCKA_MESSAGE_OUTPUT=XML CMOCKA_XML_FILE=./%g.xml ctest --test-dir ${{github.workspace}}/build --output-on-failure -VV + run: CMOCKA_MESSAGE_OUTPUT=XML CMOCKA_XML_FILE=./%g.junit.xml ctest --test-dir ${{github.workspace}}/build --output-on-failure -VV - name: Test (output to stdout) run: CMOCKA_MESSAGE_OUTPUT=stdout ctest --test-dir ${{github.workspace}}/build --output-on-failure -VV @@ -56,4 +56,4 @@ jobs: uses: codecov/test-results-action@v1 with: token: ${{ secrets.CODECOV_TOKEN }} - flags: unitTests \ No newline at end of file + flags: unitTests