Skip to content

CI: fíx test reports #569

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Sep 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -279,6 +279,8 @@ jobs:
- run:
name: Test
command: mvn verify -am -pl test-non-functional -Dgpg.skip -Dmaven.javadoc.skip
- report:
working_directory: test-non-functional
- store_cache

# DE-847
Expand All @@ -304,6 +306,8 @@ jobs:
name: Test
working_directory: test-non-functional
command: mvn verify -Dgpg.skip -Dmaven.javadoc.skip -Dshaded
- report:
working_directory: test-non-functional
- store_cache

sonar:
Expand Down Expand Up @@ -376,6 +380,8 @@ jobs:
- run:
name: Test
command: mvn verify -am -pl test-resilience -Dgpg.skip -Dmaven.javadoc.skip
- report:
working_directory: test-resilience
- store_cache

# DE-847
Expand Down Expand Up @@ -408,6 +414,8 @@ jobs:
name: Test
working_directory: test-resilience
command: mvn verify -Dgpg.skip -Dmaven.javadoc.skip -Dshaded
- report:
working_directory: test-resilience
- store_cache

deploy:
Expand Down
5 changes: 5 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -304,6 +304,11 @@
<artifactId>replacer</artifactId>
<version>1.5.3</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-report-plugin</artifactId>
<version>3.4.0</version>
</plugin>
</plugins>
</pluginManagement>
</build>
Expand Down