I know that I can specify which tests are meant to run by using -run
flag like so:
go test -run=TestUpdateAll//Assignments
But how can I do that to make go test
not run a particular test?
Let's say I don't wont the above test to be run. How to do that?
EDIT
Maybe this is crucial to understand my problem: the tests that I'd like to run are generated by third party tools with which I'm still trying to resolve an issue that's causing the above.
Therefore I cannot really add flags in source or use t.Skip()
etc.