Skip to content

Commit dae732c

Browse files
authored
Merge pull request #3240 from bhcleek/coverage/browser-args
coverage: pass test args
2 parents 70cd000 + e01b041 commit dae732c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

autoload/go/coverage.vim

+1-1
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ function! go#coverage#Browser(bang, ...) abort
9393
let l:tmpname = tempname()
9494
if go#util#has_job()
9595
call s:coverage_job({
96-
\ 'cmd': ['go', 'test', '-tags', go#config#BuildTags(), '-coverprofile', l:tmpname],
96+
\ 'cmd': ['go', 'test', '-tags', go#config#BuildTags(), '-coverprofile', l:tmpname] + a:000,
9797
\ 'complete': function('s:coverage_browser_callback', [l:tmpname]),
9898
\ 'bang': a:bang,
9999
\ 'for': 'GoTest',

0 commit comments

Comments
 (0)