Merge pull request #1217 from maurogeorge/patch-04

Change default rake task to run test and rubocop
This commit is contained in:
Benjamin Fleischer 2015-10-01 22:57:40 -05:00
commit c5fdfb43bf
3 changed files with 2 additions and 3 deletions

View File

@ -18,7 +18,6 @@ install:
script:
- env CAPTURE_STDERR=false bundle exec rake
- bundle exec rake rubocop
env:
- "RAILS_VERSION=4.0"

View File

@ -36,4 +36,4 @@ Rake::TestTask.new do |t|
t.verbose = true
end
task :default => :test
task default: [:test, :rubocop]

View File

@ -21,6 +21,6 @@ install:
- bundle install --retry=3
test_script:
- bundle exec rake
- bundle exec rake test
build: off