Skip to content

Commit 37c8142

Browse files
committed
Disable runtime-in-use test on Windows since ^C doesn't work on CI.
1 parent 0e6b598 commit 37c8142

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

test/integration/runtime_int_test.go

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -113,6 +113,10 @@ func (suite *RuntimeIntegrationTestSuite) TestInterruptSetup() {
113113
}
114114

115115
func (suite *RuntimeIntegrationTestSuite) TestInUse() {
116+
if runtime.GOOS == "windows" {
117+
// https://activestatef.atlassian.net/browse/DX-2926
118+
suite.T().Skip("interrupting on windows is currently broken when ran via CI")
119+
}
116120
if runtime.GOOS == "darwin" {
117121
return // gopsutil errors on later versions of macOS (DX-2723)
118122
}

0 commit comments

Comments
 (0)