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
The current e2e test runner hasn't been updated for some time, and has several issues:
Old versions being tested
Limited ability to vary tested Kubernetes / cert-manager versions
In-script implementations of dependency provisioning (better to use make / makefile modules)
e2e Suite is a regular go test with no compile flags, so go test ./... in the root of the repo fails
The minimum we should do is bump the versions being used, but it'd be worth changing this more widely. Binary dependencies (kubectl, etc) can be provisioned in make, and the gold standard would be for the kind cluster to be created in Go code when the test is set up.
The text was updated successfully, but these errors were encountered:
The current e2e test runner hasn't been updated for some time, and has several issues:
go test ./...
in the root of the repo failsThe minimum we should do is bump the versions being used, but it'd be worth changing this more widely. Binary dependencies (kubectl, etc) can be provisioned in make, and the gold standard would be for the kind cluster to be created in Go code when the test is set up.
The text was updated successfully, but these errors were encountered: