Posts

Showing posts with the label junit4

maven surefire-plugin is skipping tests

Image
Clash Royale CLAN TAG #URR8PPP maven surefire-plugin is skipping tests Recently in our hadoop project, we added maven-surefire-plugin for running unit tests by categories. Related blocks in hadoop root pom.xml file as below: <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>2.21.0</version> <configuration> <groups>${test.groups}</groups> </configuration> <dependencies> <dependency> <groupId>org.apache.maven.surefire</groupId> <artifactId>surefire-junit47</artifactId> <version>2.21.0</version> </dependency> </dependencies> </plugin> <profile> <id>flakies</id> <properties> <test.groups>org.apache.hadoop.classification.TestJUnitCategory$FlakiesTest</test.grou...