accommodate for up to 4 re-runs of a failing test
Project: http://git-wip-us.apache.org/repos/asf/commons-rng/repo Commit: http://git-wip-us.apache.org/repos/asf/commons-rng/commit/1eb7ea49 Tree: http://git-wip-us.apache.org/repos/asf/commons-rng/tree/1eb7ea49 Diff: http://git-wip-us.apache.org/repos/asf/commons-rng/diff/1eb7ea49 Branch: refs/heads/master Commit: 1eb7ea49a3e86fe6128361ec36f1cc424f64e1d8 Parents: b400ab3 Author: Rob Tompkins <chtom...@gmail.com> Authored: Wed Jul 25 21:44:46 2018 -0400 Committer: Rob Tompkins <chtom...@gmail.com> Committed: Wed Jul 25 21:44:46 2018 -0400 ---------------------------------------------------------------------- commons-rng-sampling/pom.xml | 12 ++++++++++++ 1 file changed, 12 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/commons-rng/blob/1eb7ea49/commons-rng-sampling/pom.xml ---------------------------------------------------------------------- diff --git a/commons-rng-sampling/pom.xml b/commons-rng-sampling/pom.xml index bd1fb0d..6d0a80a 100644 --- a/commons-rng-sampling/pom.xml +++ b/commons-rng-sampling/pom.xml @@ -66,4 +66,16 @@ </dependency> </dependencies> + <build> + <plugins> + <plugin> + <artifactId>maven-surefire-plugin</artifactId> + <version>2.22.0</version> + <configuration> + <rerunFailingTestsCount>4</rerunFailingTestsCount> + </configuration> + </plugin> + </plugins> + </build> + </project>