I use the "-i" flag on building but this is also being applied to go test. ``` "go.buildFlags": ["-i"], ``` It appears "go test" is being run in the background when I open a test file. This is the error I get at the top of the source file for the package statement: ``` go test: i flag may be set only once run "go help test" or "go help testflag" for more information ``` The help for `go test` says: ``` -i Install packages that are dependencies of the test. Do not run the test. ``` --- Can we set flags separately for build and test?
I use the "-i" flag on building but this is also being applied to go test.
It appears "go test" is being run in the background when I open a test file.
This is the error I get at the top of the source file for the package statement:
The help for
go testsays:Can we set flags separately for build and test?