serve docker: disable linux tests in CI as they are locking up regularly

This commit is contained in:
Nick Craig-Wood 2022-02-28 18:01:47 +00:00
parent 8f164e4df5
commit 8ee0fe9863
1 changed files with 2 additions and 2 deletions

View File

@ -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 {