Parcourir la source

Updated Jenkinsfile

fooser il y a 7 ans
Parent
commit
292b093459
1 fichiers modifiés avec 2 ajouts et 2 suppressions
  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') {