Skip to content

Commit 46efd27

Browse files
committed
System tests: start all services in compose project
This reverts part of the changes in #209 as some tests may require more than one container running at the same time.
1 parent c748172 commit 46efd27

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • internal/testrunner/runners/system/servicedeployer

internal/testrunner/runners/system/servicedeployer/compose.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ func (r *DockerComposeServiceDeployer) SetUp(inCtxt ServiceContext) (DeployedSer
6161
serviceName := inCtxt.Name
6262
opts := compose.CommandOptions{
6363
Env: []string{fmt.Sprintf("%s=%s", serviceLogsDirEnv, outCtxt.Logs.Folder.Local)},
64-
ExtraArgs: []string{"--build", "-d", serviceName},
64+
ExtraArgs: []string{"--build", "-d"},
6565
}
6666
if err := p.Up(opts); err != nil {
6767
return nil, errors.Wrap(err, "could not boot up service using docker compose")

0 commit comments

Comments
 (0)