When I tried to run the same test once again:
$ ./gradlew -Dtest.single=KafkaStreamsTest streams:test
> Configure project :
Building project 'core' with Scala version 2.11.11
BUILD SUCCESSFUL in 1s
How do I disable the cache so that gradlew runs the whole test ?
Thanks
This command would run the test (note cleanTest):
./gradlew cleanTest -Dtest.single=KafkaStreamsTest streams:test
In Gradle 7.6 you can use option
gradle test --rerun
--rerun causes the task to be re-run even if up-to-date. Similar to --rerun-tasks, but only for a specific task.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With