From 9154ff6bb641b82ff0f4a8ee6caff15fae2fb835 Mon Sep 17 00:00:00 2001 From: Andre Padberg Date: Wed, 20 Mar 2024 13:46:28 +0100 Subject: [PATCH] chore: fix pipeline unittest.xml --- .github/workflows/tests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 8d7d220..80bc3b0 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -65,13 +65,13 @@ jobs: - name: Unit Tests without coverage if: matrix.typo3 != '^11.5' || matrix.php != '8.3' run: | - export "UNIT_XML"=..Build/vendor/typo3/testing-framework/Resources/Core/Build/UnitTests.xml + export "UNIT_XML"=..Build/vendor/typo3/testing-framework/Resources/Core/Build/UnitTests-v10.xml .Build/bin/phpunit --colors -c $UNIT_XML Tests/Unit - name: Unit Tests with coverage if: matrix.typo3 == '^11.5' && matrix.php == '8.3' run: | - export "UNIT_XML"=.Build/vendor/typo3/testing-framework/Resources/Core/Build/UnitTests.xml + export "UNIT_XML"=.Build/vendor/typo3/testing-framework/Resources/Core/Build/UnitTests-v10.xml .Build/bin/phpunit --coverage-filter Classes --coverage-clover=unittest-coverage.clover --colors -c $UNIT_XML Tests/Unit/ - name: Upload coverage results to Scrutinizer