Skip to content

Commit

Permalink
Changes based on PR comments
Browse files Browse the repository at this point in the history
  • Loading branch information
amsanghi committed Jul 11, 2024
1 parent a35c90c commit 73be2ed
Show file tree
Hide file tree
Showing 2 changed files with 3 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 -tags=feestest > >(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
4 changes: 2 additions & 2 deletions system_tests/fees_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
// these tests seems to consume too much memory with race detection
// Test randomly fails with L1 gas price estimate should tend toward the basefee
// so skipping locally, but running on CI
//go:build !race && feestest
// +build !race,feestest
//go:build !race && cionly
// +build !race,cionly

package arbtest

Expand Down

0 comments on commit 73be2ed

Please sign in to comment.