Replies: 1 comment 1 reply
-
@radcortez as this is config related, maybe you can point me to the change? |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
It seems that
quarkus.test.integration-test-profile=test
now is required for native integration test that run with test profile.Before 3.18.x it was sufficent by declaring
quarkus.test.native-image-profile=test
and the tests and the native image ran with theapplication-test.property
file.Since 3.18.x, it seems that by not declaring
quarkus.test.integration-test-profile=test
the tests are executed without test properties.As this might make sense as it is explainable that
quarkus.test.native-image-profile=test
is only for the image under tests andquarkus.test.integration-test-profile=test
only for the tests but not the testee, I was not able to find the corresponding issue /PR.Beta Was this translation helpful? Give feedback.
All reactions