Skip to content

Commit bbb90c6

Browse files
committed
integration: Don't include resize test as part of integration suite
Since macadam right now not support resource resize as part of start => stop => resize resource => start so the test case is failing - crc-org/macadam#291
1 parent 39bcb9b commit bbb90c6

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

test/integration/resize_test.go

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
//go:build ignore
2+
13
package test_test
24

35
import (

test/integration/utilities_test.go

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,11 +98,12 @@ func crcSuccess(op string, args ...string) string {
9898
}
9999

100100
// Helper function to run crc setup or start commands expecting fails
101-
func crcFails(op string, args ...string) string {
101+
// Commented out since this is only used for resize test and that is ignore atm
102+
/*func crcFails(op string, args ...string) string {
102103
output, _ := RunCRCExpectFail(
103104
crcCmd(op, args...)...)
104105
return output
105-
}
106+
}*/
106107

107108
// Helper function to add custom parameters if required
108109
func crcCmd(op string, args ...string) []string {

0 commit comments

Comments
 (0)