Skip to content

Commit 4c8e460

Browse files
committed
kola/tests: bump timeout to 20 mins
Some tests have been failing since timeouts were added. Let's readjust their timeouts.
1 parent b1f80e5 commit 4c8e460

File tree

3 files changed

+5
-0
lines changed

3 files changed

+5
-0
lines changed

mantle/kola/tests/ignition/resource.go

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ import (
1919
"fmt"
2020
"io"
2121
"net/http"
22+
"time"
2223

2324
"github.com/pin/tftp"
2425

@@ -73,6 +74,7 @@ func init() {
7374
Tags: []string{"ignition"},
7475
// https://github.com/coreos/bugs/issues/2205
7576
ExcludePlatforms: []string{"do", "qemu-unpriv"},
77+
Timeout: 20 * time.Minute,
7678
})
7779
register.RegisterTest(&register.Test{
7880
Name: "coreos.ignition.resource.remote",

mantle/kola/tests/ignition/security.go

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ import (
2222
"net/http"
2323
"net/http/httptest"
2424
"strings"
25+
"time"
2526

2627
"github.com/vincent-petithory/dataurl"
2728

@@ -63,6 +64,7 @@ func init() {
6364
// DO: https://github.com/coreos/bugs/issues/2205
6465
// Packet & QEMU: https://github.com/coreos/ignition/issues/645
6566
ExcludePlatforms: []string{"do", "packet", "qemu"},
67+
Timeout: 20 * time.Minute,
6668
})
6769
}
6870

mantle/kola/tests/podman/podman.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@ func init() {
5353
// Not really but podman blows up if there's no /etc/resolv.conf
5454
Tags: []string{kola.NeedsInternetTag},
5555
Distros: []string{"fcos"},
56+
Timeout: 20 * time.Minute,
5657
})
5758
// https://github.com/coreos/mantle/pull/1080
5859
// register.RegisterTest(&register.Test{

0 commit comments

Comments
 (0)