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)