diff --git a/host/host_test.go b/host/host_test.go index 87a6bd9..b4f3e40 100644 --- a/host/host_test.go +++ b/host/host_test.go @@ -2,6 +2,7 @@ package host import ( "fmt" + "os" "testing" ) @@ -20,6 +21,10 @@ func TestHostInfo(t *testing.T) { } func TestUptime(t *testing.T) { + if os.Getenv("CIRCLECI") == "true" { + t.Skip("Skip CI") + } + v, err := Uptime() if err != nil { t.Errorf("error %v", err) @@ -30,6 +35,9 @@ func TestUptime(t *testing.T) { } func TestBoot_time(t *testing.T) { + if os.Getenv("CIRCLECI") == "true" { + t.Skip("Skip CI") + } v, err := BootTime() if err != nil { t.Errorf("error %v", err) diff --git a/process/process_test.go b/process/process_test.go index 84c24bd..d8eb483 100644 --- a/process/process_test.go +++ b/process/process_test.go @@ -301,6 +301,10 @@ func Test_Process_CpuPercentLoop(t *testing.T) { } func Test_Process_CreateTime(t *testing.T) { + if os.Getenv("CIRCLECI") == "true" { + t.Skip("Skip CI") + } + p := testGetProcess() c, err := p.CreateTime()