mirror of
https://github.com/querydsl/querydsl.git
synced 2026-06-13 21:01:01 +08:00
Add cubrid health check
This commit is contained in:
parent
8373d48624
commit
d0c7dec53b
@ -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);
|
||||
|
||||
@ -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
|
||||
|
||||
Loading…
Reference in New Issue
Block a user