Skip to content

Commit

Permalink
parallelize rubocop and normal tests for speed and clarity on what broke
Browse files Browse the repository at this point in the history
  • Loading branch information
grosser committed May 4, 2016
1 parent 73fd451 commit 3c6bb83
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
4 changes: 4 additions & 0 deletions .travis.yml
Expand Up @@ -6,3 +6,7 @@ rvm:
- "2.3.0"
sudo: false
cache: bundler
script: bundle exec rake $TASK
env:
- TASK=test
- TASK=rubocop
3 changes: 2 additions & 1 deletion Rakefile
@@ -1,8 +1,9 @@
require 'bundler/gem_tasks'
require 'rake/testtask'
require 'rubocop/rake_task'
require 'yaml'

task default: [:test, :rubocop]
task default: [:test, :rubocop] # same as .travis.yml

Rake::TestTask.new do |t|
t.libs << 'test'
Expand Down

0 comments on commit 3c6bb83

Please sign in to comment.