ARTEMIS-3302: enable some integration tests (primarily TLS+security) in the fast-tests profile
Help catch issues in these areas on PR runs rather than full builds.
This commit is contained in:
parent
ab8271f4f0
commit
828d4940ec
4
pom.xml
4
pom.xml
|
@ -1120,6 +1120,10 @@
|
|||
<skipLicenseCheck>false</skipLicenseCheck>
|
||||
<skipCompatibilityTests>false</skipCompatibilityTests>
|
||||
<testFailureIgnore>false</testFailureIgnore>
|
||||
<!-- This enables the karaf-client-integration-tests and
|
||||
integration-tests module tests, see fast-tests profile
|
||||
in the latter for specific tests it then runs -->
|
||||
<skipIntegrationTests>false</skipIntegrationTests>
|
||||
</properties>
|
||||
</profile>
|
||||
<profile>
|
||||
|
|
|
@ -564,6 +564,28 @@
|
|||
</plugins>
|
||||
</build>
|
||||
<profiles>
|
||||
<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>**/integration/security/*Test.java</include>
|
||||
<include>**/integration/ssl/*Test.java</include>
|
||||
<include>**/integration/amqp/JMSSaslExternalTest.java</include>
|
||||
<include>**/integration/amqp/connect/AMQPConnectSaslTest.java</include>
|
||||
</includes>
|
||||
</configuration>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</pluginManagement>
|
||||
</build>
|
||||
</profile>
|
||||
<profile>
|
||||
<id>jdk16on</id>
|
||||
<activation>
|
||||
|
|
Loading…
Reference in New Issue