Remove e2e tests from steps
This commit is contained in:
parent
b30f671135
commit
81b58b39ec
|
@ -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"
|
||||
|
|
6
Makefile
6
Makefile
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue