Skip to content
This repository was archived by the owner on Nov 7, 2025. It is now read-only.

Commit 5e34f8d

Browse files
committed
Log docker image used for integration tests
1 parent 40ac249 commit 5e34f8d

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

ci/it/testcases/utils.go

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -198,9 +198,11 @@ func setupQuesma(ctx context.Context, quesmaConfig string) (testcontainers.Conta
198198
log.Println("No QUESMA_IT_VERSION environment variable set, watch out for stale images!")
199199
quesmaVersion = "nightly"
200200
}
201+
quesmaDockerImage := fmt.Sprintf("quesma/quesma:%s", quesmaVersion)
202+
log.Printf("Using Quesma docker image: %s", quesmaDockerImage)
201203

202204
quesmaReq := testcontainers.ContainerRequest{
203-
Image: fmt.Sprintf("quesma/quesma:%s", quesmaVersion),
205+
Image: quesmaDockerImage,
204206
ExposedPorts: []string{"0.0.0.0::9999/tcp", "0.0.0.0::8080/tcp"},
205207
Env: map[string]string{
206208
"QUESMA_CONFIG_FILE": "/configuration/conf.yaml",

0 commit comments

Comments
 (0)