fix(tests): remove JdbcTestUtils.drop usages as it defeats concurrent test runs

This commit is contained in:
brian.mulier
2025-11-26 11:38:57 +01:00
committed by brian-mulier-p
parent 98678deabb
commit c3d94dc8ff
13 changed files with 34 additions and 154 deletions

View File

@@ -1,20 +1,6 @@
package io.kestra.repository.h2;
import io.kestra.core.repositories.AbstractExecutionServiceTest;
import io.kestra.jdbc.JdbcTestUtils;
import jakarta.inject.Inject;
import org.junit.jupiter.api.BeforeEach;
import java.io.IOException;
import java.net.URISyntaxException;
class H2ExecutionServiceTest extends AbstractExecutionServiceTest {
@Inject
JdbcTestUtils jdbcTestUtils;
@BeforeEach
protected void init() throws IOException, URISyntaxException {
jdbcTestUtils.drop();
jdbcTestUtils.migrate();
}
}
}