From e91a100320f752f7fc77921d9cc1b65c98b465d4 Mon Sep 17 00:00:00 2001 From: Sam Dowell Date: Mon, 26 Aug 2024 17:24:01 -0700 Subject: [PATCH] chore: rebalance e2e test groups (#1407) After recent optimizations to the e2e tests, the runtimes between test groups has become increasingly unbalanced. This change is intended to reduce the variance. --- Makefile.e2e | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile.e2e b/Makefile.e2e index ac4ee28520..6191c9a59e 100644 --- a/Makefile.e2e +++ b/Makefile.e2e @@ -100,12 +100,12 @@ test-e2e-kind: config-sync-manifest-local build-kind-e2e # This target runs the first group of e2e tests. .PHONY: test-e2e-kind-test-group1 test-e2e-kind-test-group1: - $(MAKE) E2E_ARGS="$(E2E_ARGS) --test-features=acm-controller,selector,lifecycle,nomos-cli" test-e2e-kind + $(MAKE) E2E_ARGS="$(E2E_ARGS) --test-features=acm-controller,selector,lifecycle,nomos-cli,drift-control" test-e2e-kind # This target runs the second group of e2e tests. .PHONY: test-e2e-kind-test-group2 test-e2e-kind-test-group2: - $(MAKE) E2E_ARGS="$(E2E_ARGS) --test-features=sync-source,reconciliation-1,drift-control" test-e2e-kind + $(MAKE) E2E_ARGS="$(E2E_ARGS) --test-features=sync-source,reconciliation-1" test-e2e-kind # This target runs the third group of e2e tests. .PHONY: test-e2e-kind-test-group3