-
Notifications
You must be signed in to change notification settings - Fork 2.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Quarkus (Gradle) build should not run tests #15471
Comments
/cc @evanchooly, @glefloch, @quarkusio/devtools |
And just a side note, I think with release |
Actually |
Sounds like this issue has been answered and can be closed. |
Hmmm, except the doc part that needs an update for fast-jar. @glefloch could you have a look at it? |
yes, I'm going to update the docs. |
Description
While building the application I've noticed that
./gradlew build -Dquarkus.package.type=fast-jar
will also run all the tests:I think this should be avoided because that's a different (usually time consuming) stage/task that's triggered on a different phase.
Implementation Ideas
Make the Gradle (and/or Maven) plugin avoid
check
and/ortest
, somehow like this command:./gradlew -Dquarkus.package.type=fast-jar build --exclude-task=check
— that simple I guess 😓The text was updated successfully, but these errors were encountered: