From d6b9ebed3165c2d03edfa136d2ee5fce87021722 Mon Sep 17 00:00:00 2001 From: vimystic <122659254+vimystic@users.noreply.github.com> Date: Tue, 12 Sep 2023 15:58:33 -0600 Subject: [PATCH] Add explanation --- .github/workflows/interchaintest.yml | 2 +- Makefile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/interchaintest.yml b/.github/workflows/interchaintest.yml index 625078efc..bf5ad7bba 100644 --- a/.github/workflows/interchaintest.yml +++ b/.github/workflows/interchaintest.yml @@ -148,7 +148,7 @@ jobs: TESTS=$(cd interchaintest && go test -list ^TestScenario | grep -v "^ok " | jq -R -s -c 'split("\n")[:-1]') echo "matrix=${TESTS}" >> $GITHUB_OUTPUT - + # Note : This job will not start until prepare-scenario-matrix completes sucessfully scenarios: needs: prepare-scenario-matrix runs-on: ubuntu-latest diff --git a/Makefile b/Makefile index 4693f4688..d66df7fdb 100644 --- a/Makefile +++ b/Makefile @@ -92,7 +92,7 @@ interchaintest-fee-grant: cd interchaintest && go test -race -v -run TestRelayerFeeGrant . interchaintest-scenario: ## Scenario tests are suitable for simple networks of 1 validator and no full nodes. They test specific functionality. - cd interchaintest && go test -timeout 30m -race -v -run TestScenarioClient ./... + cd interchaintest && go test -timeout 30m -race -v -run TestScenario ./... coverage: