aboutsummaryrefslogtreecommitdiffstats
path: root/lib/tasks/ci.rake
diff options
context:
space:
mode:
authorjpl2016-08-23 11:28:06 +0200
committerjpl2016-08-23 11:28:06 +0200
commit8b3f3055ec5ee19bdaf9f334c83cfcdd01c7ed0b (patch)
tree5f542928e52540fd2d7bead72644e11186a9f3ca /lib/tasks/ci.rake
parentcdd593a7faddbcf61ca71eb57421478623aed897 (diff)
downloadchouette-core-8b3f3055ec5ee19bdaf9f334c83cfcdd01c7ed0b.tar.bz2
Refs #1482: adding cucumber for tests
Diffstat (limited to 'lib/tasks/ci.rake')
-rw-r--r--lib/tasks/ci.rake4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/tasks/ci.rake b/lib/tasks/ci.rake
index beb3b19d1..b6c7d2352 100644
--- a/lib/tasks/ci.rake
+++ b/lib/tasks/ci.rake
@@ -23,7 +23,7 @@ namespace :ci do
desc "Deploy after CI"
task :deploy do
- sh "cap #{deploy_env} deploy:migrations deploy:seed"
+ sh "cap #{deploy_env} deploy:migrations deploy:seed deploy:cucumber"
end
desc "Clean test files"
@@ -33,4 +33,4 @@ namespace :ci do
end
desc "Run continuous integration tasks (spec, ...)"
-task :ci => ["ci:setup", "spec", "ci:deploy", "ci:clean"]
+task :ci => ["ci:setup", "spec", "cucumber", "ci:deploy", "ci:clean"]