@@ -52,37 +52,3 @@ clean-artifacts:
5252# Run all tests (default)
5353test-e2e : ginkgo $(LOG_ARTIFACTS )
5454 $(CURDIR ) /bin/ginkgo $(GINKGO_COMMON_ARGS ) $(GINKGO_REPORT_ARGS ) $(GINKGO_ARGS ) ./tests/e2e/...
55-
56- # Run only parallel-safe tests
57- test-e2e-parallel : ginkgo $(LOG_ARTIFACTS )
58- $(CURDIR ) /bin/ginkgo $(GINKGO_COMMON_ARGS ) $(GINKGO_REPORT_ARGS ) \
59- --procs=$(GINKGO_PARALLEL_PROCS ) \
60- --label-filter=' !serial' \
61- $(GINKGO_ARGS ) ./tests/e2e/...
62-
63- # Run only serial tests (cluster-mutating)
64- test-e2e-serial : ginkgo $(LOG_ARTIFACTS )
65- $(CURDIR ) /bin/ginkgo $(GINKGO_COMMON_ARGS ) $(GINKGO_REPORT_ARGS ) \
66- --label-filter=' serial' \
67- $(GINKGO_ARGS ) ./tests/e2e/...
68-
69- # Run parallel tests first, then serial tests
70- test-e2e-all : test-e2e-parallel test-e2e-serial
71-
72- # Run tests with flake attempts
73- test-e2e-flaky : ginkgo $(LOG_ARTIFACTS )
74- $(CURDIR ) /bin/ginkgo $(GINKGO_COMMON_ARGS ) $(GINKGO_REPORT_ARGS ) \
75- --flake-attempts=$(GINKGO_FLAKE_ATTEMPTS ) \
76- $(GINKGO_ARGS ) ./tests/e2e/...
77-
78- # Run specific test by label
79- test-e2e-label : ginkgo $(LOG_ARTIFACTS )
80- $(CURDIR ) /bin/ginkgo $(GINKGO_COMMON_ARGS ) $(GINKGO_REPORT_ARGS ) \
81- --label-filter=' $(LABEL)' \
82- $(GINKGO_ARGS ) ./tests/e2e/...
83-
84- # Run tests and generate coverage
85- test-e2e-coverage : ginkgo $(LOG_ARTIFACTS )
86- $(CURDIR ) /bin/ginkgo $(GINKGO_COMMON_ARGS ) $(GINKGO_REPORT_ARGS ) \
87- --cover --coverprofile=$(LOG_ARTIFACTS ) /coverage.out \
88- $(GINKGO_ARGS ) ./tests/e2e/...
0 commit comments