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
Just incase anyone is coming here looking for answers. This has been removed in gradle 5.0. Look for test.single
in https://docs.gradle.org/current/userguide/upgrading_version_4.html
If you still wish to use a command line option in this style you should be able to use the --tests
commandline param
$ ./gradlew integrationTest --tests=MyTest