From 0f3bbe8931d36cbb4a348b1ea057f0446de9005d Mon Sep 17 00:00:00 2001 From: David Herberth Date: Tue, 18 Sep 2018 23:40:32 +0200 Subject: [PATCH] ci: pyenv-pipeline-plugin 2.0.0 changes pysh -> sh. --- Jenkinsfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 0dc45835..ff4df559 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -12,9 +12,9 @@ pipeline { stage('Unit') { steps { withPythonEnv('python2') { - pysh 'python -m pip install -r requirements.txt' - pysh 'python -m pip install -r requirements-test.txt' - pysh 'python -m nose --with-xunit || true' + sh 'python -m pip install -r requirements.txt' + sh 'python -m pip install -r requirements-test.txt' + sh 'python -m nose --with-xunit || true' junit 'nosetests.xml' } }