diff --git a/process/process_test.go b/process/process_test.go index 51f7d9cf6..877992b25 100644 --- a/process/process_test.go +++ b/process/process_test.go @@ -227,6 +227,11 @@ func Test_Process_NumCtx(t *testing.T) { func Test_Process_Nice(t *testing.T) { p := testGetProcess() + // https://github.com/shirou/gopsutil/issues/1532 + if os.Getenv("CI") == "true" && runtime.GOOS == "darwin" { + t.Skip("Skip CI") + } + n, err := p.Nice() skipIfNotImplementedErr(t, err) if err != nil {