What I want is a way to say if Test_A fails then don't run Test_B because 
it's guaranteed to fail and that just creates noise in the output.


So instinctively I'd like something like annotations for this. 

// @DependsOn [ "Test_A" ]
func Test_B(t *testing.T) {
  .....test stuff
}

https://github.com/MarcGrol/golangAnnotations

If I use something like magic comments will it be possible for `go test` to 
see these? if not, What would be the recommended approach to add this 
functionality to `go test` ?


-- 
You received this message because you are subscribed to the Google Groups 
"golang-nuts" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to