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 f86b21f commit e21f1fe
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,12 @@ clusters: build package
deploy: clusters
DAPPER_ENV="OPERATOR_IMAGE" ./.dapper -m bind $(SCRIPTS_DIR)/deploy.sh --globalnet $(globalnet) --deploytool $(deploytool)

e2e: deploy
e2e-tests:
./.dapper -m bind ./scripts/kind-e2e/e2e.sh --status $(status) --deploytool $(deploytool)

e2e: deploy e2e-tests
true

$(TARGETS): .dapper vendor/modules.txt
./.dapper -m bind $@ --build_debug $(build_debug)

Expand Down

0 comments on commit e21f1fe

Please sign in to comment.