We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b4f0f94 commit 150c63cCopy full SHA for 150c63c
test/integration/main_test.go
@@ -172,9 +172,13 @@ func KicDriver() bool {
172
return DockerDriver() || PodmanDriver()
173
}
174
175
+func HyperkitDriver() bool {
176
+ return strings.Contains(*startArgs, "--driver=hyperkit") || strings.Contains(*startArgs, "--vm-driver=hyperkit")
177
+}
178
+
179
// NeedsAuxDriver Returns true if the driver needs an auxiliary driver (kvm, hyperkit,..)
180
func NeedsAuxDriver() bool {
- return HyperVDriver() || KVMDriver()
181
+ return HyperkitDriver() || KVMDriver()
182
183
184
// VMDriver checks if the driver is a VM
0 commit comments