소스 검색

Another Jenkins update

fooser 7 년 전
부모
커밋
f0db76e837
1개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  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') {