aboutsummaryrefslogtreecommitdiffstats
path: root/lib/tasks/ci.rake
diff options
context:
space:
mode:
authorGuillaume2017-10-11 14:13:49 +0200
committerGuillaume2017-10-11 14:13:49 +0200
commit57186e9378956f4dcb925b4ce18f6c32e7293dbe (patch)
tree789be916794bfe9e1a91e0dad5fd48a16a9f3959 /lib/tasks/ci.rake
parentf741c3c5f905befdefb4344200ef7aefead5bf8f (diff)
downloadchouette-core-57186e9378956f4dcb925b4ce18f6c32e7293dbe.tar.bz2
delete bundle exec for spec task
Diffstat (limited to 'lib/tasks/ci.rake')
-rw-r--r--lib/tasks/ci.rake8
1 files changed, 2 insertions, 6 deletions
diff --git a/lib/tasks/ci.rake b/lib/tasks/ci.rake
index 240e66461..3f947fb08 100644
--- a/lib/tasks/ci.rake
+++ b/lib/tasks/ci.rake
@@ -32,11 +32,7 @@ namespace :ci do
end
task :spec do
- sh "bundle exec rspec --profile"
- end
-
- task :teaspoon do
- sh "RAILS_ENV=test bundle exec rake teaspoon"
+ sh "rspec --profile"
end
desc "Deploy after CI"
@@ -55,4 +51,4 @@ namespace :ci do
end
desc "Run continuous integration tasks (spec, ...)"
-task :ci => ["ci:setup", "rspec", "cucumber", "ci:check_security", "ci:deploy", "ci:clean"]
+task :ci => ["ci:setup", "ci:spec", "cucumber", "ci:check_security", "ci:deploy", "ci:clean"]