Browse Source

Another Jenkins update

fooser 7 năm trước cách đây
mục cha
commit
f0db76e837
1 tập tin đã thay đổi với 2 bổ sung1 xóa
  1. 2 1
      Jenkinsfile

+ 2 - 1
Jenkinsfile

@@ -5,12 +5,13 @@ pipeline {
         stage('Build') {
             steps {
                 echo 'Building...'
+                sh 'python3.7 -m poetry install --develop .'
                 sh 'python3.7 -m poetry install'
             }
         }
         stage('Test') {
             steps {
-                sh 'tox'
+                sh 'poetry run tox'
             }
         }
         stage('Deploy') {