浏览代码

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') {