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
test: use build tags for e2e tests, remove ErrSkip pattern
Add //go:build e2e to all e2e test files and the framework so that
go test ./... works locally without a cluster. CI runs e2e via
make test-e2e which passes -tags e2e.
Replace the ErrSkip sentinel with direct error returns from
framework.New() — the build tag is the exclusion mechanism, not
runtime skips. Tests now t.Fatal immediately if KUBECONFIG or
PLUGIN_URL are unset when compiled with the e2e tag.
Also adds a unit-test Makefile alias (delegates to test-backend)
for clarity.
Co-authored-by: Cursor <cursoragent@cursor.com>
0 commit comments