From 67977dd0d5bb718d9b7ad2e0710e5f5bee94438e Mon Sep 17 00:00:00 2001 From: Cliff Hill Date: Tue, 26 Oct 2021 08:20:22 -0400 Subject: [PATCH] Trying to get tests to run. Signed-off-by: Cliff Hill --- Jenkinsfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 8d968ef..b9c90d8 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -5,9 +5,9 @@ pipeline { stages { stage('Test') { steps { - pip3 install --upgrade pip - pip3 install wheel nox nox_poetry poetry - nox -x + sh 'pip3 install --upgrade pip' + sh 'pip3 install wheel nox nox_poetry poetry' + sh 'nox -x' } } }