From f18cb02617f009bb3aee46a6c51b52573c939114 Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Wed, 21 Jun 2017 15:18:24 -0400 Subject: test --- Jenkinsfile | 4 ++-- 1 file 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') { -- cgit