I want to do a gradle build but not run the unit tests. I tried:
$ gradle -Dskip.tests build
But that doesn't seem to do anything. Is there something else I can do?
|
I want to do a gradle build but not run the unit tests. I tried:
But that doesn't seem to do anything. Is there something else I can do? |
||||
|
|
|
You should use the Try:
Update: The link in Peter's comment changed. Here is the new one: |
|||||||||
|
|
Try:
To list all available tasks for your project, try:
|
|||
|
|
|
The accepted answer is the correct one. OTOH, the way I previously solved this was to add the following to all projects:
Run the build with -Dskip.tests=true -- all test tasks will be skipped. |
||||
|
|