Skip to content

Commit

Permalink
Clean up Rakefile
Browse files Browse the repository at this point in the history
  • Loading branch information
rmm5t committed Apr 27, 2022
1 parent 5d766f1 commit bdc310b
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions Rakefile
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
require 'bundler/setup'
require 'bundler/gem_tasks'

desc "Default: run unit tests."
task default: :test

require 'rake/testtask'
Rake::TestTask.new(:test) do |test|
test.libs << "lib" << "test"
test.libs << "test"
test.verbose = true
end
task default: :test

task :cov do
ENV["COV"] = "1"
Expand Down

0 comments on commit bdc310b

Please sign in to comment.