From 39f8fec1299e15e18cabb00791a38ab0594bcc24 Mon Sep 17 00:00:00 2001 From: Alexis PIRES Date: Fri, 27 Dec 2019 23:42:50 +0100 Subject: [PATCH] disable test on travis --- nftables_test.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/nftables_test.go b/nftables_test.go index 173a497..5d9258e 100644 --- a/nftables_test.go +++ b/nftables_test.go @@ -3983,6 +3983,10 @@ func TestStatelessNAT(t *testing.T) { func TestHandleBack(t *testing.T) { + if os.Getenv("TRAVIS") == "true" { + t.SkipNow() + } + // Create a new network namespace to test these operations, // and tear down the namespace at test completion. c, newNS := openSystemNFTConn(t)