From 2bc2546d5c93d8a34361e546279e991986090c3f Mon Sep 17 00:00:00 2001 From: Ivan Andreev Date: Sat, 4 Sep 2021 20:20:54 +0300 Subject: [PATCH] test: skip mount2 test on single-CPU runners --- cmd/mount2/mount_test.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cmd/mount2/mount_test.go b/cmd/mount2/mount_test.go index 4cc2e91dc..2017d4daf 100644 --- a/cmd/mount2/mount_test.go +++ b/cmd/mount2/mount_test.go @@ -5,9 +5,11 @@ package mount2 import ( "testing" + "github.com/rclone/rclone/fstest/testy" "github.com/rclone/rclone/vfs/vfstest" ) func TestMount(t *testing.T) { + testy.SkipUnreliable(t) vfstest.RunTests(t, false, mount) }