mirror of https://github.com/apache/lucene.git
LUCENE-9660: correct help/tests.txt.
This commit is contained in:
parent
2ed6e4aa78
commit
486141f0eb
|
@ -90,14 +90,14 @@ within the same JVM; it also works in IDEs):
|
||||||
gradlew -p lucene/core test --tests TestDemo -Ptests.iters=5
|
gradlew -p lucene/core test --tests TestDemo -Ptests.iters=5
|
||||||
|
|
||||||
Tests tasks will be (by default) re-executed on each invocation because
|
Tests tasks will be (by default) re-executed on each invocation because
|
||||||
we pick a random global tests.seed. If you run the same tests twice
|
we pick a random global tests.seed and because we want them to (force
|
||||||
with the same seed, the test task will be skipped (as it is up-to-date
|
the test task to run). If you want to make the 'tests' task obey up-to-date
|
||||||
with respect to source code):
|
gradle rules, fix the seed and turn off up to date trigger:
|
||||||
|
|
||||||
gradlew -p lucene/core test -Ptests.seed=deadbeef
|
gradlew -p lucene/core test -Ptests.seed=deadbeef -Ptests.neverUpToDate=false
|
||||||
|
|
||||||
to force re-execution of tests, even for the same master seed, apply
|
These properties can be set in your local gradle.properties. To force re-execution
|
||||||
cleanTest task:
|
of tests, even for the same master seed, apply cleanTest task:
|
||||||
|
|
||||||
gradlew -p lucene/core cleanTest test -Ptests.seed=deadbeef
|
gradlew -p lucene/core cleanTest test -Ptests.seed=deadbeef
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue