Skip to content

Commit

Permalink
Merge branch 'master' into multi-act-wasm
Browse files Browse the repository at this point in the history
  • Loading branch information
eljobe committed Jul 16, 2024
2 parents 5e3a4db + 80a446c commit 33d9f04
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ jobs:
if: matrix.test-mode == 'defaults'
run: |
packages=`go list ./...`
stdbuf -oL gotestsum --format short-verbose --packages="$packages" --rerun-fails=1 --no-color=false -- ./... -coverprofile=coverage.txt -covermode=atomic -coverpkg=./...,./go-ethereum/... -timeout 20m -parallel=8 > >(stdbuf -oL tee full.log | grep -vE "INFO|seal")
stdbuf -oL gotestsum --format short-verbose --packages="$packages" --rerun-fails=1 --no-color=false -- ./... -coverprofile=coverage.txt -covermode=atomic -coverpkg=./...,./go-ethereum/... -timeout 20m -parallel=8 -tags=cionly > >(stdbuf -oL tee full.log | grep -vE "INFO|seal")
- name: run tests with race detection
if: matrix.test-mode == 'race'
Expand Down
6 changes: 4 additions & 2 deletions system_tests/fees_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,10 @@
// For license information, see https://github.com/nitro/blob/master/LICENSE

// these tests seems to consume too much memory with race detection
//go:build !race
// +build !race
// Test randomly fails with L1 gas price estimate should tend toward the basefee
// so skipping locally, but running on CI
//go:build !race && cionly
// +build !race,cionly

package arbtest

Expand Down

0 comments on commit 33d9f04

Please sign in to comment.