From 08bf8dee7ad8085b2fdfc1d035407ab2a804fc42 Mon Sep 17 00:00:00 2001 From: Billie Cleek Date: Mon, 3 Jun 2024 09:58:54 -0700 Subject: [PATCH] comment out golangci-lint test golangci-lint changed their results yet again. I'm tired of their instability. Things seem to work well now, and it's frustrating to constantly be changing the test expectations, so I'm disabling yet another golangci-lint set of tests for now. --- autoload/go/lint_test.vim | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/autoload/go/lint_test.vim b/autoload/go/lint_test.vim index 768ab8da5e..d0b472f264 100644 --- a/autoload/go/lint_test.vim +++ b/autoload/go/lint_test.vim @@ -293,10 +293,11 @@ func! s:gometa_multiple(metalinter) abort endtry endfunc -func! Test_GometaAutoSaveGolangciLint_multiple() abort - let g:go_gopls_enabled = 0 - call s:gometaautosave_multiple('golangci-lint') -endfunc +"func! Test_GometaAutoSaveGolangciLint_multiple() abort +" return +" let g:go_gopls_enabled = 0 +" call s:gometaautosave_multiple('golangci-lint') +"endfunc func! s:gometaautosave_multiple(metalinter) abort let RestoreGOPATH = go#util#SetEnv('GOPATH', fnameescape(fnamemodify(getcwd(), ':p')) . 'test-fixtures/lint')