Skip to content

Commit

Permalink
Allow running just the e2e tests
Browse files Browse the repository at this point in the history
This is useful when working on the e2e tests, you can deploy once
and run e2e-tests many times.

```
make e2e status=keep
... modify your e2e tests here ...
make e2e-tests
```
  • Loading branch information
mangelajo committed Apr 2, 2020
1 parent b2bbc49 commit e8315d2
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@ TARGETS := $(shell ls -p scripts | grep -v -e /)

clusters: build package

e2e-tests:
./scripts/kind-e2e/e2e.sh --status keep --deploytool $(deploytool)

e2e: deploy
./scripts/kind-e2e/e2e.sh --status $(status) --deploytool $(deploytool)

Expand Down

0 comments on commit e8315d2

Please sign in to comment.