Add cubrid health check

This commit is contained in:
John Tims 2020-05-31 07:26:36 -06:00
parent 8373d48624
commit d0c7dec53b
2 changed files with 8 additions and 1 deletions

View File

@ -65,7 +65,7 @@ public class InsertBase extends AbstractBaseTest {
}
@Test
@ExcludeIn(SQLITE) // https://bitbucket.org/xerial/sqlite-jdbc/issue/133/prepstmtsetdate-int-date-calendar-seems
@ExcludeIn({CUBRID, SQLITE}) // https://bitbucket.org/xerial/sqlite-jdbc/issue/133/prepstmtsetdate-int-date-calendar-seems
public void insert_dates() {
QDateTest dateTest = QDateTest.qDateTest;
LocalDate localDate = new LocalDate(1978, 1, 2);

View File

@ -4,6 +4,8 @@ services:
block-until-healthy:
image: alpine:latest
depends_on:
cubrid:
condition: service_healthy
db2:
condition: service_healthy
sqlserver:
@ -47,6 +49,11 @@ services:
- "8001:8001"
- "8002:8002"
- "1523:1523"
healthcheck:
test: csql demodb -c "SELECT 1"
interval: 5s
timeout: 60s
start_period: 60s
mongo:
image: mongo:3.6.1