diff options
| author | Guillaume | 2017-10-11 14:13:49 +0200 |
|---|---|---|
| committer | Guillaume | 2017-10-11 14:13:49 +0200 |
| commit | 57186e9378956f4dcb925b4ce18f6c32e7293dbe (patch) | |
| tree | 789be916794bfe9e1a91e0dad5fd48a16a9f3959 | |
| parent | f741c3c5f905befdefb4344200ef7aefead5bf8f (diff) | |
| download | chouette-core-57186e9378956f4dcb925b4ce18f6c32e7293dbe.tar.bz2 | |
delete bundle exec for spec task
| -rw-r--r-- | lib/tasks/ci.rake | 8 |
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"] |
