snazy commented on code in PR #469:
URL: https://github.com/apache/polaris/pull/469#discussion_r1913794293


##########
dropwizard/service/src/test/java/org/apache/polaris/service/dropwizard/it/QuarkusRestCatalogIntegrationTest.java:
##########
@@ -18,6 +18,8 @@
  */
 package org.apache.polaris.service.dropwizard.it;
 
+import io.quarkus.test.junit.QuarkusTest;
 import org.apache.polaris.service.it.test.PolarisRestCatalogIntegrationTest;
 
-public class DropwizardRestCatalogIntegrationTest extends 
PolarisRestCatalogIntegrationTest {}
+@QuarkusTest

Review Comment:
   Just add this to your `build.gradle.kts` (after #714)
   
   ```kotlin
   testing {
     suites {
       val intTest by registering(JvmTestSuite::class)
     }
   }
   
   tasks.named("check") { dependsOn(testing.suites.named("intTest")) }
   ```
   



-- 
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]

Reply via email to