Make sure MySQL test app works
Some checks failed
Java CI with Gradle / build (17) (push) Has been cancelled
Java CI with Maven / build (17) (push) Has been cancelled

This commit is contained in:
Dave Syer 2025-02-04 09:08:45 +00:00
parent 1f89996e1f
commit aa2273e955

View file

@ -40,7 +40,8 @@ public class MysqlTestApplication {
}
public static void main(String[] args) {
SpringApplication.run(PetClinicApplication.class, "--spring.profiles.active=mysql");
SpringApplication.run(PetClinicApplication.class, "--spring.profiles.active=mysql",
"--spring.docker.compose.enabled=false");
}
}