summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.travis.yml2
-rw-r--r--Rakefile6
2 files changed, 5 insertions, 3 deletions
diff --git a/.travis.yml b/.travis.yml
index 7ff93f7..d66a4db 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -6,4 +6,6 @@ rvm:
- 2.1.1
bundler_args: --without development_extras
script:
+- bundle exec rake prep --trace
+- bundle exec rake compile --trace
- bundle exec rake travis --trace
diff --git a/Rakefile b/Rakefile
index 223d02f..9c2fb8a 100644
--- a/Rakefile
+++ b/Rakefile
@@ -205,9 +205,9 @@ desc 'Run all style checks'
task :style => ['style:rubocop', 'style:reek']
desc 'Run style + spec tests by default on travis'
-task :travis => ['prep', 'compile', 'spec', 'style']
+task :travis => ['spec', 'style']
desc 'Run style, spec and test kichen on travis'
-task :travis_all => ['prep', 'compile', 'spec', 'integration:cloud', 'style']
+task :travis_all => ['spec', 'integration:cloud', 'style']
-task :default => ['prep', 'compile', 'spec', 'integration:vagrant', 'style']
+task :default => ['spec', 'integration:vagrant', 'style']