@@ -5,12 +5,12 @@ pipeline {
stage('Build') {
steps {
echo 'Building...'
- python3.7 -m poetry install
+ bash -c python3.7 -m poetry install
}
stage('Test') {
- python3.7 -m tox -e py37
+ bash -c python3.7 -m tox -e py37
stage('Deploy') {