You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In #3589 we added integration tests to be executed in CI. Unfortunately, due to how Go build tags work running the integration tests will include unit tests, which is unnecessary duplication. We should add //go:build !integration to all the unit tests to separate them (see: https://mickey.dev/posts/go-build-tags-testing/).
The text was updated successfully, but these errors were encountered:
We add Keep Client's integration tests execution to the CI process. The
tests will be executed after the client build and unit tests pass.
Please note that with the current configuration, the integration tests
running command will execute also unit tests. To change this behavior we
will need to add `//go:build !integration` to all the non-integration
test files. (see: #3592)
In #3589 we added integration tests to be executed in CI. Unfortunately, due to how Go build tags work running the integration tests will include unit tests, which is unnecessary duplication. We should add
//go:build !integration
to all the unit tests to separate them (see: https://mickey.dev/posts/go-build-tags-testing/).The text was updated successfully, but these errors were encountered: