Skip to content

Commit fc08993

Browse files
authored
Merge pull request #715 from dmvolod/issue-141
🌱 Add new Makefile target to run e2e tests locally
2 parents da81ce5 + 274418b commit fc08993

File tree

2 files changed

+11
-0
lines changed

2 files changed

+11
-0
lines changed

Makefile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -541,6 +541,9 @@ clean-release: ## Remove the release folder
541541
## E2E
542542
## --------------------------------------
543543

544+
.PHONY: test-e2e-local ## Run e2e tests locally
545+
test-e2e-local: docker-build-e2e test-e2e
546+
544547
.PHONY: test-e2e
545548
test-e2e: $(KUSTOMIZE)
546549
$(MAKE) release-manifests

test/e2e/README.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Test
22

3+
## Run e2e tests locally
4+
5+
To run e2e tests locally, run the following command
6+
7+
```bash
8+
make test-e2e-local
9+
```
10+
311
## Compatibility notice
412

513
This package is not subject to deprecation notices or compatibility guarantees.

0 commit comments

Comments
 (0)