Skip to content

Commit

Permalink
Revert "delete e2e"
Browse files Browse the repository at this point in the history
This reverts commit 71db49e.
  • Loading branch information
crodriguezvega committed Jul 23, 2024
1 parent 71db49e commit 16f00d9
Show file tree
Hide file tree
Showing 52 changed files with 15,123 additions and 0 deletions.
22 changes: 22 additions & 0 deletions e2e/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
DOCKER := $(shell which docker)
TEST_CONTAINERS=$(shell docker ps --filter "label=ibc-test" -a -q)

cleanup-ibc-test-containers:
for id in $(TEST_CONTAINERS) ; do \
$(DOCKER) stop $$id ; \
$(DOCKER) rm $$id ; \
done

init:
./scripts/init.sh

e2e-test: init cleanup-ibc-test-containers
./scripts/run-e2e.sh $(test) $(entrypoint)

e2e-suite: init cleanup-ibc-test-containers
RUN_SUITE="true" ./scripts/run-e2e.sh "" $(entrypoint)

compatibility-tests:
./scripts/run-compatibility-tests.sh $(release_branch)

.PHONY: cleanup-ibc-test-containers e2e-test compatibility-tests init
Loading

0 comments on commit 16f00d9

Please sign in to comment.