I\'m trying to run a single integration tests using gradle\'s -Dtest.single flag. I have added another source set, src/integrationTest and put the
-Dtest.single
src/integrationTest
The correct syntax is:
gradle testTaskName -DtestTaskName.single=...
In this case:
gradle integrationTest -DintegrationTest.single=...