Skip to content

Commit

Permalink
ci: fix test suite failing
Browse files Browse the repository at this point in the history
  • Loading branch information
srdtrk committed Aug 13, 2024
1 parent 26ae55f commit 970e4c7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,4 +70,4 @@ jobs:
SP1_PRIVATE_KEY: ${{ secrets.SP1_PRIVATE_KEY }}
run: |
cd e2e/interchaintestv8
go test -v -mod=readonly . -run=${{ matrix.test }} -timeout 40m
go test -v -mod=readonly . -run '^${{ matrix.test }}$' -timeout 40m
2 changes: 1 addition & 1 deletion justfile
Original file line number Diff line number Diff line change
Expand Up @@ -55,4 +55,4 @@ generate-abi:
test-e2e testname:
just clean
@echo "Running {{testname}} test..."
cd e2e/interchaintestv8 && go test -v -run=TestWithIbcEurekaTestSuite/{{testname}} -timeout 40m
cd e2e/interchaintestv8 && go test -v -run '^TestWithIbcEurekaTestSuite/{{testname}}$' -timeout 40m

0 comments on commit 970e4c7

Please sign in to comment.