Skip to content

Fix execution of all tests using plain go test ./... from the root directory

This was conflicting with the behaviour of our go_tests.sh script, which was able to run all tests as a single unit, properly calling the required init() functions, which does not happen on a plain go test, where each test package is tested individually.

Merge request reports