From 567da004c52a71a4d788b6f957254b2b7fa72b60 Mon Sep 17 00:00:00 2001 From: Shirou WAKAYAMA Date: Sun, 6 Mar 2016 00:02:06 +0900 Subject: [PATCH] [net]linux: explicit skip CI. --- net/net_linux_test.go | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/net/net_linux_test.go b/net/net_linux_test.go index 23d61a3..55f1ec2 100644 --- a/net/net_linux_test.go +++ b/net/net_linux_test.go @@ -1,6 +1,7 @@ package net import ( + "os" "syscall" "testing" @@ -9,6 +10,10 @@ import ( ) func TestGetProcInodesAll(t *testing.T) { + if os.Getenv("CIRCLECI") == "true" { + t.Skip("Skip CI") + } + root := common.HostProc("") v, err := getProcInodesAll(root) assert.Nil(t, err)