diff --git a/client/client_test.go b/client/client_test.go index 33e6af3..e57fb62 100644 --- a/client/client_test.go +++ b/client/client_test.go @@ -43,7 +43,7 @@ func RunInteractiveBashCommandsWithoutStrictMode(t *testing.T, script string) (s } func TestIntegration(t *testing.T) { - if os.Getenv("GITHUB_ACTIONS") == "" { + if os.Getenv("GITHUB_ACTIONS") != "" { // TODO: debug why these tests fail on github actions, the error message is: // `bash: cannot set terminal process group (683): Inappropriate ioctl for device\nbash: no job control in this shell` t.Skip() @@ -58,7 +58,7 @@ func TestIntegration(t *testing.T) { } func TestIntegrationWithNewDevice(t *testing.T) { - if os.Getenv("GITHUB_ACTIONS") == "" { + if os.Getenv("GITHUB_ACTIONS") != "" { // TODO: debug why these tests fail on github actions, the error message is: // `bash: cannot set terminal process group (683): Inappropriate ioctl for device\nbash: no job control in this shell` t.Skip()