stephenbakalian
stephenbakalian

Reputation: 1159

How do you skip testing stage in bamboo?

I'm using a Maven project from an svn in Bamboo. I was wondering if there is a way to skip the testing phase or at least skip a few specific tests through Bamboo settings (without modifying the code or pom)

Upvotes: 4

Views: 7953

Answers (1)

stephenbakalian
stephenbakalian

Reputation: 1159

under environment variables

MAVEN_OPTS="-Dmaven.test.skip=true"

Upvotes: 7

Related Questions