diff --git a/cli/cliui/provisionerjob_test.go b/cli/cliui/provisionerjob_test.go index 4795867843b74..2aa25b6046517 100644 --- a/cli/cliui/provisionerjob_test.go +++ b/cli/cliui/provisionerjob_test.go @@ -82,6 +82,8 @@ func TestProvisionerJob(t *testing.T) { // This cannot be ran in parallel because it uses a signal. // nolint:paralleltest t.Run("Cancel", func(t *testing.T) { + t.Skip("This test issues an interrupt signal which will propagate to the test runner.") + if runtime.GOOS == "windows" { // Sending interrupt signal isn't supported on Windows! t.SkipNow() diff --git a/cli/server_test.go b/cli/server_test.go index d5620b261b4c3..5c8af2f2ca45b 100644 --- a/cli/server_test.go +++ b/cli/server_test.go @@ -1491,6 +1491,8 @@ func TestServer_Production(t *testing.T) { //nolint:tparallel,paralleltest // This test cannot be run in parallel due to signal handling. func TestServer_Shutdown(t *testing.T) { + t.Skip("This test issues an interrupt signal which will propagate to the test runner.") + if runtime.GOOS == "windows" { // Sending interrupt signal isn't supported on Windows! t.SkipNow()