Skip to content

Commit

Permalink
Use rake to run tests
Browse files Browse the repository at this point in the history
  • Loading branch information
sethvargo committed Jul 27, 2014
1 parent edeb957 commit a1d92e3
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ rvm:

bundler_args: --jobs 7

script: bundle exec rspec --color --format progress
script: bundle exec rake
10 changes: 10 additions & 0 deletions Rakefile
Original file line number Diff line number Diff line change
@@ -1 +1,11 @@
require 'bundler/gem_tasks'

require 'rspec/core/rake_task'
RSpec::Core::RakeTask.new do |t|
t.rspec_opts = [
'--color',
'--format progress',
].join(' ')
end

task default: :spec

0 comments on commit a1d92e3

Please sign in to comment.