From eaffc953f0ae9e51a92c3f5fb04a1d17a3c59d90 Mon Sep 17 00:00:00 2001 From: Zach Leslie Date: Sat, 10 Feb 2018 11:03:54 -0800 Subject: [PATCH] Avoid development group gems --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 51532f8..badd129 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -10,7 +10,7 @@ pipeline { stages { stage('test') { steps { - sh '. .env.sh && printenv && bundle' + sh '. .env.sh && printenv && bundle install --without=development' sh '. .env.sh && bundle exec rake test' } }