Skip to content

Commit

Permalink
ci: pyenv-pipeline-plugin 2.0.0 changes pysh -> sh.
Browse files Browse the repository at this point in the history
  • Loading branch information
Dav1dde committed Sep 18, 2018
1 parent 036867a commit 0f3bbe8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -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'
}
}
Expand Down

0 comments on commit 0f3bbe8

Please sign in to comment.