Skip to content

Commit

Permalink
Merge pull request #11198 from neo4j/3.2-skip-ha-tests
Browse files Browse the repository at this point in the history
Skip HA tests in normal builds, run them only when requested
  • Loading branch information
digitalstain committed Mar 8, 2018
2 parents 306a8e6 + 4b580ce commit 84ae7cf
Showing 1 changed file with 42 additions and 0 deletions.
42 changes: 42 additions & 0 deletions enterprise/ha/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,48 @@
</license>
</licenses>

<profiles>
<profile>
<id>test-ha</id>
<activation>
<property>
<name>test-ha</name>
<value>true</value>
</property>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<skipTests>false</skipTests>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-failsafe-plugin</artifactId>
<configuration>
<skipTests>false</skipTests>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<skipTests>true</skipTests>
</configuration>
</plugin>
</plugins>
</build>

<dependencies>
<dependency>
<groupId>org.neo4j</groupId>
Expand Down

0 comments on commit 84ae7cf

Please sign in to comment.