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
While working on #9528, I've noticed that AbstractJpaAutoConfigurationTests imports EmbeddedDataSourceConfiguration and DataSourceAutoConfiguration, the latter is managed and imported by the former depending on certain conditions matching.
Also, those tests are not really working in isolation and are reusing the same database. They currently work with side effect (or create-drop semantic) probably so we should make sure that each test uses a separate database.
The text was updated successfully, but these errors were encountered:
While working on #9528, I've noticed that
AbstractJpaAutoConfigurationTests
importsEmbeddedDataSourceConfiguration
andDataSourceAutoConfiguration
, the latter is managed and imported by the former depending on certain conditions matching.Also, those tests are not really working in isolation and are reusing the same database. They currently work with side effect (or
create-drop
semantic) probably so we should make sure that each test uses a separate database.The text was updated successfully, but these errors were encountered: