Skip to content

Commit 8bdb7a5

Browse files
committed
Remove Maven quiet flag when running tests in CI
It won't too verbose anyway, since we build the project in a previous step. This will help understanding intermittent issues (more info to analyze, like tests execution order). Signed-off-by: Thomas Segismont <tsegismont@gmail.com>
1 parent 9cfde05 commit 8bdb7a5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,4 +39,4 @@ jobs:
3939
mvn -s .github/maven-ci-settings.xml -q clean install -B $PROFILE_ARG -pl :${{ inputs.module }} -am -DskipTests
4040
- name: Run tests for the target module
4141
run: |
42-
mvn -s .github/maven-ci-settings.xml -q verify -B $PROFILE_ARG -pl :${{ inputs.module }}
42+
mvn -s .github/maven-ci-settings.xml verify -B $PROFILE_ARG -pl :${{ inputs.module }}

0 commit comments

Comments
 (0)