adutra commented on code in PR #4812: URL: https://github.com/apache/polaris/pull/4812#discussion_r3481858494
########## runtime/defaults/src/main/resources/application-test.properties: ########## @@ -20,12 +20,20 @@ # Configuration common to ALL unit tests (executed with "test" profile – Gradle "test" tasks). # Per-test specific configuration should use QuarkusTestProfile +# Use H2 as the default persistence backend for unit tests +# (note: the test must be configured to use relational-jdbc persistence type). +polaris.persistence.relational.jdbc.datasource=h2 +# Use in-memory persistence backend for unit tests by default. +polaris.persistence.type=in-memory +quarkus.datasource.active=false +quarkus.datasource.devservices.enabled=false +quarkus.datasource.postgresql.devservices.enabled=false +quarkus.datasource.h2.devservices.enabled=false + # For unit tests, the default HTTP and management *test-ports* (8081 and 9001 respectively) must be Review Comment: They are not, in fact. These are the default values for `quarkus.http.test-port` and `quarkus.management.test-port` respectively. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
