diff options
-rw-r--r-- | Jenkinsfile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Jenkinsfile b/Jenkinsfile index 5175c6e..7969b8f 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -5,13 +5,13 @@ pipeline { stage('Build') { steps { echo 'Building..' - python setup.py install + sh 'python setup.py install' } } stage('Test') { steps { echo 'Testing..' - test -f setup.py + sh 'test -f setup.py' } } stage('Deploy') { |