We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2cb4bd9 commit 51da225Copy full SHA for 51da225
.github/workflows/main.yml
@@ -52,7 +52,10 @@ jobs:
52
run: ./mvnw -B -q -ff -DskipTests -ntp source:jar deploy
53
- name: Generate code coverage
54
if: ${{ matrix.release_build && github.event_name != 'pull_request' }}
55
- run: ./mvnw -B -q -ff -ntp test
+ # Exclude the `*-tests` integration modules: they have no main sources,
56
+ # so they contribute zero to jacoco coverage, but their test suites
57
+ # (Afterburner/Blackbird classpath-mode integration tests) are slow.
58
+ run: ./mvnw -B -q -ff -ntp -pl '!afterburner-tests,!blackbird-tests' test
59
- name: Publish code coverage
60
61
uses: codecov/codecov-action@57e3a136b779b570ffcdbf80b3bdc90e7fab3de2 # v6.0.0
0 commit comments