Unit test inconsistencies (#330)

* run race tests in CICD

* set HOME env for .ethereum mkdir permission denied

* use same homeDir method as other places in code

* unused variable in test removed

* do NOT run race tests

* add statediffing test to Jenkinsfile
This commit is contained in:
Michael 2023-03-07 16:04:10 -05:00 committed by GitHub
parent 5461ce8cd1
commit 2b073c1a51
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

5
Jenkinsfile vendored
View File

@ -37,9 +37,10 @@ pipeline {
} }
steps { steps {
echo 'Testing ...' echo 'Testing geth units...'
//sh '/usr/local/go/bin/go test -p 1 -v ./...'
sh 'make test' sh 'make test'
echo 'Testing statediffing geth...'
sh 'make statedifftest'
} }
} }
stage('Packaging') { stage('Packaging') {