I want to execute gradle build without executing the unit tests. I tried:
gradle build
$ gradle -Dskip.tests build
That doesn\'t seem to
You can exclude tasks
gradle build --exclude-task test
https://docs.gradle.org/current/userguide/command_line_interface.html#sec:command_line_executing_tasks