NO-JIRA Adding CompareUpgradeTest to fast-tests
This commit is contained in:
parent
50e90cad5d
commit
3e7cb24381
4
pom.xml
4
pom.xml
|
@ -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>
|
||||
|
|
|
@ -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>
|
||||
|
|
Loading…
Reference in New Issue