Remove e2e tests from steps

This commit is contained in:
Andrea Maria Piana 2021-07-13 08:47:30 +02:00
parent b30f671135
commit 81b58b39ec
3 changed files with 0 additions and 13 deletions

View File

@ -17,9 +17,6 @@ jobs:
- stage: Test unit and integration
script:
- make test-unit
- stage: Test e2e on private network
script:
- make test-e2e-race
cache:
directories:
- ".ethereumtest/Mainnet"

View File

@ -287,12 +287,6 @@ test-unit-race: test-unit ##@tests Run unit and integration tests with -race fla
test-e2e: ##@tests Run e2e tests
# order: reliability then alphabetical
# TODO(tiabc): make a single command out of them adding `-p 1` flag.
go test -timeout 5m ./t/e2e/accounts/... -network=$(networkid) $(gotest_extraflags)
go test -timeout 5m ./t/e2e/api/... -network=$(networkid) $(gotest_extraflags)
go test -timeout 5m ./t/e2e/node/... -network=$(networkid) $(gotest_extraflags)
go test -timeout 20m ./t/e2e/rpc/... -network=$(networkid) $(gotest_extraflags)
go test -timeout 10m ./t/e2e/transactions/... -network=$(networkid) $(gotest_extraflags)
go test -timeout 10m ./t/e2e/services/... -network=$(networkid) $(gotest_extraflags)
test-e2e-race: gotest_extraflags=-race
test-e2e-race: test-e2e ##@tests Run e2e tests with -race flag

View File

@ -61,9 +61,5 @@ pipeline {
sh 'make test-unit'
}
} } } }
stage('Race E2E Tests') { steps { dir(env.STATUS_PATH) {
sh 'make test-e2e-race'
} } }
} // stages
} // pipeline