From c63faf7a2e3253281be16df4d00d32de4c8e584e Mon Sep 17 00:00:00 2001 From: stana-ethernal Date: Thu, 14 Nov 2024 09:48:23 +0100 Subject: [PATCH] added test-interchain command to make file --- Makefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Makefile b/Makefile index c648654077..9fe375bdf4 100644 --- a/Makefile +++ b/Makefile @@ -52,6 +52,10 @@ test-integration: test-integration-cov: go test ./tests/integration/... -timeout 30m -coverpkg=./... -coverprofile=integration-profile.out -covermode=atomic +# run interchain tests +test-interchain: + cd tests/interchain && go test ./... -timeout 30m + # run mbt tests test-mbt: cd tests/mbt/driver;\