Skip to content

Commit

Permalink
NO-JIRA Adding CompareUpgradeTest to fast-tests
Browse files Browse the repository at this point in the history
  • Loading branch information
clebertsuconic committed Mar 3, 2023
1 parent 50e90ca commit 3e7cb24
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 0 deletions.
4 changes: 4 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -1297,6 +1297,10 @@
integration-tests module tests, see fast-tests profile
in the latter for specific tests it then runs -->
<skipIntegrationTests>false</skipIntegrationTests>
<!-- only a portion of the smoke tests is run under fast test.
You will see a filter applied on the fast-tests profile under ./tests/smoke-tsts.
Which is mostly for Compare Upgrades. -->
<skipSmokeTests>false</skipSmokeTests>
</properties>
</profile>
<profile>
Expand Down
21 changes: 21 additions & 0 deletions tests/smoke-tests/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -1339,6 +1339,27 @@
<sts-surefire-extra-args>--add-opens=java.management.rmi/javax.management.remote.rmi=ALL-UNNAMED --add-opens=java.rmi/sun.rmi.server=ALL-UNNAMED --add-opens=java.rmi/sun.rmi.transport=ALL-UNNAMED</sts-surefire-extra-args>
</properties>
</profile>

<profile>
<!-- Quick subset of tests, used on PR checks -->
<id>fast-tests</id>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<includes combine.children="override">
<include>**/smoke/upgradeTest/*Test.java</include>
</includes>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
</profile>

</profiles>

</project>

0 comments on commit 3e7cb24

Please sign in to comment.