From 5a32d60c29c09e39313a949eab1500f2b18fc131 Mon Sep 17 00:00:00 2001 From: xross Date: Mon, 8 Aug 2022 11:23:04 +0100 Subject: [PATCH] Move Jenkinsfile from xmostest to pytest --- Jenkinsfile | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) 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') {