Skip to content

Commit

Permalink
test: fix e2e-tests flakiness (#2336)
Browse files Browse the repository at this point in the history
use patch hermes in e2e-tests
  • Loading branch information
sainoe authored Oct 14, 2024
1 parent aadfb10 commit 0d012f5
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,10 @@ RUN go mod tidy
RUN make install

# Get Hermes build
FROM --platform=linux/amd64 ghcr.io/informalsystems/hermes:1.10.2 AS hermes-builder
## TODO: import Hermes release from ghcr.io/informalsystems repository when
## a Hermes release contains the patch in
# https://github.com/informalsystems/hermes/pull/4182
FROM --platform=linux/amd64 otacrew/hermes-ics:latest AS hermes-builder

# Get CometMock
FROM ghcr.io/informalsystems/cometmock:v0.38.x as cometmock-builder
Expand Down
2 changes: 1 addition & 1 deletion tests/e2e/test_runner.go
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ func (tr *TestRunner) Run() error {
}

tr.result.Passed()
// err = tr.teardownEnvironment()
err = tr.teardownEnvironment()
fmt.Printf("==========================================\n")
return err
}
Expand Down

0 comments on commit 0d012f5

Please sign in to comment.