I have a Gradle custom Test task to run my Integration Tests. I would like to be able to run this without Gradle automatically going through all previous phases and just running the test. Is there a way to do this without -x for each build step?
Asked
Active
Viewed 393 times
3
-
Is it of type Test, in other words like this: task integrationTest(type: Test) – judoole Feb 19 '15 at 18:57
-
@judoole, Yes, exactly.. – David R Feb 20 '15 at 13:42
-
I guess not extending from Test then. It is dependent on compile and that other stuff. Maybe experiment with JavaExec? #answeringfromabar – judoole Feb 21 '15 at 00:04