diff --git a/Jenkinsfile b/Jenkinsfile index 04781502..63ffbd45 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -32,7 +32,13 @@ pipeline { parallel { stage('Legacy tests') { steps { - runXmostest("${REPO}", 'legacy_tests') + dir("${REPO}/tests"){ + viewEnv(){ + withVenv{ + runPytest('--numprocesses=4') + } + } + } } } stage('Unit tests') {