Replies: 1 comment 3 replies
-
If I remember correctly, Quarkus is restarted when a different profile is detected in the execution path. Still, the runtime Config bytecode generator (which stores the build time configuration) is not regenerated. Can you give me a few examples of build time config that you want to change and test? |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
According to https://quarkus.io/guides/getting-started-testing#testing_different_profiles I can create different profiles which have different configuration and then tell different test classes which profile should be used.
That seems like it only works for config which is NOT fixed at build time, correct? Is there a way I can do this but have it read different values that are only read at build time?
Basically I have a single test class that has some tests and I want to re-run that test class against different profiles with different build-time config.
Beta Was this translation helpful? Give feedback.
All reactions