Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question

3 Answers

up vote 45 down vote accepted

You should use the -x command line argument which excludes any task.

Try:

gradle build -x test 

Update:

The link in Peter's comment changed. Here is the new one:

Gradle User's guide

share|improve this answer
7  
This is the correct answer. 'gradle assemble' will leave out many other tasks too. See this diagram to get an idea. For typical real-life builds, 'gradle assemble' will leave out even more tasks. – Peter Niederwieser Feb 3 '11 at 16:48
1  
Link from @PeterNiederwieser no longer valid. Probably he was referring to this diagram: gradle.org/docs/current/userguide/img/javaPluginTasks.png – david Aug 12 '12 at 18:23

Try:

gradle assemble

To list all available tasks for your project, try:

gradle tasks
share|improve this answer

The accepted answer is the correct one.

OTOH, the way I previously solved this was to add the following to all projects:

test.onlyIf { ! Boolean.getBoolean('skip.tests') }

Run the build with -Dskip.tests=true -- all test tasks will be skipped.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.