From 2b073c1a51a465f9f8bf54b4e7e2356a0ca5617a Mon Sep 17 00:00:00 2001 From: Michael Date: Tue, 7 Mar 2023 16:04:10 -0500 Subject: [PATCH] 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 --- Jenkinsfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 7ca6588e6..9eb0b9dd6 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -37,9 +37,10 @@ pipeline { } steps { - echo 'Testing ...' - //sh '/usr/local/go/bin/go test -p 1 -v ./...' + echo 'Testing geth units...' sh 'make test' + echo 'Testing statediffing geth...' + sh 'make statedifftest' } } stage('Packaging') {