소스 검색

Updated Jenkinsfile

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