-
Notifications
You must be signed in to change notification settings - Fork 3k
Update profile configuration for integration tests #47759
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
Conversation
All integration test launchers now first consult `quarkus.test.integration-test-profile` and use `quarkus.profile` as the fallback when determining which profile the application should be run with. We also make sure that the application is not launched with multiple options specifying what profile should be used. Fixes: quarkusio#47400
Status for workflow
|
* The profile to use when testing the native image | ||
*/ | ||
@WithDefault("prod") | ||
String nativeImageProfile(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What's the reason for dropping this one?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This the deprecated property that is being removed
QS hit issue with @geoand could you add an entry into https://github.com/quarkusio/quarkus/wiki/Migration-Guide-3.23? |
Thanks @geoand Just fyi, I moved your text out of |
🙏🏽 |
All integration test launchers now first consult
quarkus.test.integration-test-profile
and usequarkus.profile
as the fallback when determiningwhich profile the application should be run with.
We also make sure that the application is not
launched with multiple options specifying
what profile should be used.