From fa57bb736244aa05a3ccee4830364cbf652e0fff Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=85smund=20V=C3=A5ge=20Fannemel?= <34712686+asmfstatoil@users.noreply.github.com> Date: Mon, 31 Jul 2023 12:29:46 +0200 Subject: [PATCH] Update test_coverage.yml --- .github/workflows/test_coverage.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test_coverage.yml b/.github/workflows/test_coverage.yml index 5980ffd89e..13ed1c4061 100644 --- a/.github/workflows/test_coverage.yml +++ b/.github/workflows/test_coverage.yml @@ -16,13 +16,13 @@ jobs: distribution: 'zulu' java-version: 11 - name: Run tests and create jacoco.exec - run: mvn -B verify -ntp + run: mvn -B test -ntp - name: Create coverage report from jacoco execution data run: mvn -B jacoco:report -ntp - name: Upload jacoco coverage reports to Codecov uses: codecov/codecov-action@v3 with: - file: ./**/target/site/jacoco/jacoco.xml + file: jacoco.xml name: codecov token: ${{ secrets.CODECOV_TOKEN }}