e2e: Make docker build timeout longer (#1862)
Depending on the host machine spec and load, it can take more time than 5 minutes. This change adhocly increases the timeout by 1.5x to address that.
This commit is contained in:
parent
50e26bd2f6
commit
aa60021ab0
|
|
@ -113,7 +113,7 @@ func (e *Env) DeleteTestID(t *testing.T) {
|
||||||
func (e *Env) DockerBuild(t *testing.T, builds []DockerBuild) {
|
func (e *Env) DockerBuild(t *testing.T, builds []DockerBuild) {
|
||||||
t.Helper()
|
t.Helper()
|
||||||
|
|
||||||
ctx, cancel := context.WithTimeout(context.Background(), 300*time.Second)
|
ctx, cancel := context.WithTimeout(context.Background(), 450*time.Second)
|
||||||
defer cancel()
|
defer cancel()
|
||||||
|
|
||||||
if err := e.docker.Build(ctx, builds); err != nil {
|
if err := e.docker.Build(ctx, builds); err != nil {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue