Skip to content

Commit 25bed4a

Browse files
committed
adding always pull
1 parent b5c99e6 commit 25bed4a

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

instance.go

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,9 @@ func NewInstance(ctx context.Context, t *testing.T, project string, dataset stri
6161
operation := backoff.OperationWithData[testcontainers.Container](func() (testcontainers.Container, error) {
6262
return testcontainers.GenericContainer(ctx, testcontainers.GenericContainerRequest{
6363
ContainerRequest: testcontainers.ContainerRequest{
64-
ImagePlatform: "linux/amd64",
65-
Image: "ghcr.io/goccy/bigquery-emulator:latest",
64+
AlwaysPullImage: true,
65+
ImagePlatform: "linux/amd64",
66+
Image: "ghcr.io/goccy/bigquery-emulator:latest",
6667
Cmd: []string{
6768
"--project=" + project,
6869
"--dataset=" + dataset,

0 commit comments

Comments
 (0)