dweiss opened a new pull request, #16149: URL: https://github.com/apache/lucene/pull/16149
This fixes test filtering and repetitions. #16121 ``` # junit4 class, filter a single test method, no reps. ./gradlew -p lucene/test-framework test --tests "TestPleaseFail.testFail" -Ptests.slowestTests.minTime=0 # junit4 class, filter test method glob, no reps. ./gradlew -p lucene/test-framework test --tests "TestPleaseFail.test*" -Ptests.slowestTests.minTime=0 # junit4 class, filter test method glob, with reps. ./gradlew -p lucene/test-framework test --tests "TestPleaseFail.test*" -Ptests.slowestTests.minTime=0 -Ptests.iters=3 # junit5 class, filter test method glob, with reps ./gradlew -p lucene/core test --tests TestDocValuesQueries.testDuelPointRangeNumericRangeQuery -Ptests.slowestTests.minTime=0 -Ptests.iters=5 ``` Note `tests.iters` in junit5 results in 6 repetitions (1 + repetead runs). This is fine. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
