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
ci: remove integration test (--test-it) infrastructure from deploy-camunda CLI and CI workflows
The IT test runner was built into the Helm repo but is no longer used —
all post-deployment testing now goes through E2E/Playwright. This removes:
- --test-it CLI flag and TestIT/RunIntegrationTests config fields
- SkipIT from CIScenario and matrix Entry structs
- skip-it workflow inputs from all CI workflow templates
- skip-it entries from ci-test-config.yaml (8.7–8.10)
- skipIT handling from generate-chart-matrix.sh
- IT log file creation in the matrix runner
Closes#5764
f.StringVar(&flags.Test.OutputTestEnvPath, "output-test-env-path", ".env.test", "Path for the test .env file output (for multi-scenario: used as base, e.g., .env.test.{scenario})")
234
234
235
235
// Test execution flags
236
-
f.BoolVar(&flags.Test.RunIntegrationTests, "test-it", false, "Run integration tests after deployment")
237
236
f.BoolVar(&flags.Test.RunE2ETests, "test-e2e", false, "Run e2e tests after deployment")
238
-
f.BoolVar(&flags.Test.RunAllTests, "test-all", false, "Run both integration and e2e tests after deployment")
237
+
f.BoolVar(&flags.Test.RunAllTests, "test-all", false, "Run all e2e tests after deployment")
239
238
f.StringVar(&flags.Test.KubeContext, "kube-context", "", "Kubernetes context to use for deployment")
240
239
f.StringVar(&flags.Test.TestExclude, "test-exclude", "", "Pipe-separated regex of test suites to exclude (passed as --grep-invert to Playwright)")
0 commit comments