We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents c978491 + 1b021eb commit 37118a4Copy full SHA for 37118a4
1 file changed
test/integration/uninstall_int_test.go
@@ -21,6 +21,9 @@ type UninstallIntegrationTestSuite struct {
21
}
22
23
func (suite *UninstallIntegrationTestSuite) TestUninstall() {
24
+ if runtime.GOOS == "windows" {
25
+ suite.T().Skip("uninstall test on Windows fails too often") // TODO: re-enable in CP-1296
26
+ }
27
suite.OnlyRunForTags(tagsuite.Uninstall, tagsuite.Critical)
28
suite.T().Run("Partial uninstall", func(t *testing.T) { suite.testUninstall(false) })
29
suite.T().Run("Full uninstall", func(t *testing.T) { suite.testUninstall(true) })
0 commit comments