[wip] add run tests

This commit is contained in:
Simon Vieille 2024-03-20 16:04:04 +01:00
commit 1c9cf2629c
Signed by untrusted user: deblan
GPG key ID: 579388D585F70417
2 changed files with 2 additions and 2 deletions

View file

@ -26,7 +26,7 @@ steps:
"Fill MySQL":
image: *mysql_image
commands:
- mysql test < tests/mysql_data.sql
- mysql -hservice-mysql -uroot test < tests/mysql_data.sql
"Run tests":
image: *golang_image

View file

@ -48,7 +48,7 @@ func TestAppRun(t *testing.T) {
schema, _ := config.LoadSchemaConfigFromFile("../tests/schema.yml")
dsns := []string{
"mysql://tcp(service-mysql)/test",
"mysql://root@tcp(service-mysql)/test",
// "postgres://postgres@tcp(service-postgres)/test",
}