You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
and other annotations. It is not obvious for which databases some tests run as the typical test infers its config from profiles. Some tests use @ActiveProfiles("hsql") while others resort to @EnabledIfSystemProperty(named = "spring.profiles.active", matches = "postgres").
It would be neat to extract the database type into an enum and use in most places conditions through annotations.
The text was updated successfully, but these errors were encountered:
JDBC integration tests repeatedly are annotated with
and other annotations. It is not obvious for which databases some tests run as the typical test infers its config from profiles. Some tests use
@ActiveProfiles("hsql")
while others resort to@EnabledIfSystemProperty(named = "spring.profiles.active", matches = "postgres")
.It would be neat to extract the database type into an enum and use in most places conditions through annotations.
The text was updated successfully, but these errors were encountered: