Skip failing Windows unit tests (volume)

As discussed during the SIG Testing meeting on January 10, 2023, failing
Windows unit tests are now skipped.
These changes should be reverted when the unit tests wil get fixed.
Mentioned SIG Testing meeting:
https://docs.google.com/document/d/1z8MQpr_jTwhmjLMUaqQyBk1EYG_Y_3D4y4YdMJ7V1Kk/edit#heading=h.qwblxf2uhgoo
This commit is contained in:
Jurj Andrei George
2023-01-11 19:11:19 +02:00
committed by Jurj Andrei George
parent 674eb36f92
commit 8f6fa99b49
5 changed files with 36 additions and 0 deletions

View File

@@ -244,6 +244,11 @@ func TestInvalidLocalPath(t *testing.T) {
}
func TestBlockDeviceGlobalPathAndMountDevice(t *testing.T) {
// Skip tests that fail on Windows, as discussed during the SIG Testing meeting from January 10, 2023
if runtime.GOOS == "windows" {
t.Skip("Skipping test that fails on Windows")
}
// Block device global mount path testing
tmpBlockDir, plug := getDeviceMountablePluginWithBlockPath(t, true)
defer os.RemoveAll(tmpBlockDir)