mirror of
https://github.com/vishvananda/netlink
synced 2024-12-18 04:34:42 +00:00
skip flaky test in ci
This commit is contained in:
parent
523ee65ce3
commit
47ee01798a
@ -1,14 +1,19 @@
|
|||||||
|
//go:build linux
|
||||||
// +build linux
|
// +build linux
|
||||||
|
|
||||||
package netlink
|
package netlink
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"os"
|
||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
"github.com/vishvananda/netlink/nl"
|
"github.com/vishvananda/netlink/nl"
|
||||||
)
|
)
|
||||||
|
|
||||||
func TestXfrmMonitorExpire(t *testing.T) {
|
func TestXfrmMonitorExpire(t *testing.T) {
|
||||||
|
if os.Getenv("CI") == "true" {
|
||||||
|
t.Skipf("Flaky in CI: Intermittently causes 10 minute timeout")
|
||||||
|
}
|
||||||
defer setUpNetlinkTest(t)()
|
defer setUpNetlinkTest(t)()
|
||||||
|
|
||||||
ch := make(chan XfrmMsg)
|
ch := make(chan XfrmMsg)
|
||||||
|
Loading…
Reference in New Issue
Block a user