Parcourir la source

Updated Jenkinsfile

fooser il y a 7 ans
Parent
commit
d60cdfc9c2
1 fichiers modifiés avec 2 ajouts et 1 suppressions
  1. 2 1
      Jenkinsfile

+ 2 - 1
Jenkinsfile

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