Skip to content

Commit

Permalink
Add maven profile to skip broker unit tests (apache#7570)
Browse files Browse the repository at this point in the history
Co-authored-by: Ali Ahmed <[email protected]>
  • Loading branch information
aahmed-se and Ali Ahmed authored Jul 17, 2020
1 parent 3c5a423 commit cfa0b0f
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions pulsar-broker/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -544,5 +544,19 @@
</pluginManagement>
</build>
</profile>
<profile>
<id>brokerSkipTest</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<skipTests>true</skipTests>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>

0 comments on commit cfa0b0f

Please sign in to comment.