Browse Source

Updated Jenkinsfile

fooser 7 years atrás
parent
commit
292b093459
1 changed files with 2 additions and 2 deletions
  1. 2 2
      Jenkinsfile

+ 2 - 2
Jenkinsfile

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