diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2017-06-21 15:18:24 -0400 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2017-06-21 15:18:24 -0400 |
commit | f18cb02617f009bb3aee46a6c51b52573c939114 (patch) | |
tree | 1106b714322bde92bfe0b851488b83e80373d384 | |
parent | cc65808538723e7f407ab3f17767528da4c33ea2 (diff) | |
download | hello_world-f18cb02617f009bb3aee46a6c51b52573c939114.tar.gz |
test
-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') { |