Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions node/node_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -404,9 +404,8 @@ func TestSimpleUpgrade(t *testing.T) {
t.Skip("Test takes ~50 seconds.")
}

if (runtime.GOARCH == "arm" || runtime.GOARCH == "arm64" && runtime.GOOS != "darwin") &&
strings.ToUpper(os.Getenv("CIRCLECI")) == "TRUE" {
t.Skip("Test is too heavy for amd64 builder running in parallel with other packages")
if runtime.GOOS == "darwin" && strings.ToUpper(os.Getenv("GITHUB_ACTIONS")) == "TRUE" {
t.Skip("Test is too heavy for macOS builder running in parallel with other packages")
}

// ConsensusTest0 is a version of ConsensusV0 used for testing
Expand Down