From e6a615bf2822da1d078fc50a76f3c6b27447c4ac Mon Sep 17 00:00:00 2001 From: stack Date: Wed, 4 Mar 2020 10:17:05 -0800 Subject: [PATCH] HBASE-23926 [Flakey Tests] Down the flakies re-run ferocity; it makes for too many fails. Change the forkcount from 1.0C to 0.25C --- dev-support/flaky-tests/run-flaky-tests.Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-support/flaky-tests/run-flaky-tests.Jenkinsfile b/dev-support/flaky-tests/run-flaky-tests.Jenkinsfile index 939bc407c7..2688b77c23 100644 --- a/dev-support/flaky-tests/run-flaky-tests.Jenkinsfile +++ b/dev-support/flaky-tests/run-flaky-tests.Jenkinsfile @@ -61,7 +61,7 @@ pipeline { else echo "Skipped gathering machine environment because we couldn't read the script to do so." fi - mvn package "${mvn_args[@]}" -Dtest="$(cat includes.txt)" -Dmaven.test.redirectTestOutputToFile=true -Dsurefire.firstPartForkCount=1C -Dsurefire.secondPartForkCount=1C + c="0.25C"; mvn -T"${c}" package "${mvn_args[@]}" -Dtest="$(cat includes.txt)" -Dmaven.test.redirectTestOutputToFile=true -Dsurefire.firstPartForkCount="${c}" -Dsurefire.secondPartForkCount="${c}" else echo "set of flaky tests is currently empty." fi -- 2.19.1