From 79f091d5c96065257d3004b4e6a438ac765ea9c3 Mon Sep 17 00:00:00 2001 From: Julien WITTOUCK Date: Sat, 7 May 2022 12:36:00 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=91=B7=20:=20set=20maven=20to=20batch-mod?= =?UTF-8?q?e?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/test.yml | 2 +- .github/workflows/visual-non-regression-tests.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 44665624..7c437b9a 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -17,7 +17,7 @@ jobs: distribution: 'temurin' java-version: 17 - name: Run Maven tests - run: mvn org.jacoco:jacoco-maven-plugin:prepare-agent verify org.jacoco:jacoco-maven-plugin:report sonar:sonar -DexcludedGroups=e2e -P ci-tu + run: mvn --batch-mode org.jacoco:jacoco-maven-plugin:prepare-agent verify org.jacoco:jacoco-maven-plugin:report sonar:sonar -DexcludedGroups=e2e -P ci-tu env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} diff --git a/.github/workflows/visual-non-regression-tests.yml b/.github/workflows/visual-non-regression-tests.yml index af5ba336..0ee30849 100644 --- a/.github/workflows/visual-non-regression-tests.yml +++ b/.github/workflows/visual-non-regression-tests.yml @@ -26,6 +26,6 @@ jobs: - name: Percy Test uses: percy/exec-action@v0.3.1 with: - command: "mvn test -Dgroups=e2e" + command: "mvn --batch-mode test -Dgroups=e2e" env: PERCY_TOKEN: ${{ secrets.PERCY_TOKEN }}