From 8ee0fe986319a2c845ac2b130a78b22cca1dd678 Mon Sep 17 00:00:00 2001 From: Nick Craig-Wood Date: Mon, 28 Feb 2022 18:01:47 +0000 Subject: [PATCH] serve docker: disable linux tests in CI as they are locking up regularly --- cmd/serve/docker/docker_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cmd/serve/docker/docker_test.go b/cmd/serve/docker/docker_test.go index 9e7ae1da9..82f217016 100644 --- a/cmd/serve/docker/docker_test.go +++ b/cmd/serve/docker/docker_test.go @@ -304,8 +304,8 @@ func (a *APIClient) request(path string, in, out interface{}, wantErr bool) { } func testMountAPI(t *testing.T, sockAddr string) { - // Disable tests under macOS and the CI since they are locking up - if runtime.GOOS == "darwin" { + // Disable tests under macOS and linux in the CI since they are locking up + if runtime.GOOS == "darwin" || runtime.GOOS == "linux" { testy.SkipUnreliable(t) } if _, mountFn := mountlib.ResolveMountMethod(""); mountFn == nil {