End-to-end tests
This project uses Ginkgo to run end-to-end tests. Tests are labelled to make running targeted or specific tests easier.
To determine what labels are available, run:
ginkgo --dry-run -v -tags e2e ./test/e2e
Tests are currently labelled via infrastructure provider, CNI provider, and addon strategy. Here are some examples to specify what tests to run.
Run all AWS tests:
make e2e-test E2E_LABEL='provider:AWS'
Run all Cilium tests:
make e2e-test E2E_LABEL='cni:Cilium'
Labels can also be combined.
Run Cilium tests on AWS:
make e2e-test E2E_LABEL='provider:AWS && cni:Cilium'
To make debugging easier, you can retain the e2e test environment, which by default is cleaned up after tests run:
make e2e-test E2E_LABEL='provider:AWS && cni:Cilium' E2E_SKIP_CLEANUP=true
To speed up the development process, if you have only change e2e tests then you can skip rebuilding the whole project:
make e2e-test E2E_LABEL='provider:AWS && cni:Cilium' SKIP_BUILD=true
Feedback
Was this page helpful?
Glad to hear it! Please tell us how we can improve.
Sorry to hear that. Please tell us how we can improve.