From 0623f34e99a88d4987d7789a494156f811f5d08e Mon Sep 17 00:00:00 2001 From: Steven Powell Date: Thu, 14 Oct 2021 17:27:06 -0700 Subject: [PATCH] skip test on none driver --- test/integration/mount_start_test.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/test/integration/mount_start_test.go b/test/integration/mount_start_test.go index 1ea7d97debe2..104c3095c1ef 100644 --- a/test/integration/mount_start_test.go +++ b/test/integration/mount_start_test.go @@ -27,6 +27,10 @@ import ( // TestMountStart tests using the mount command on start func TestMountStart(t *testing.T) { + if NoneDriver() { + t.Skip("skipping: none driver does not support mount") + } + MaybeParallel(t) type validateFunc func(context.Context, *testing.T, string)