Skip to content

Commit

Permalink
Use the minitest test runner (#666)
Browse files Browse the repository at this point in the history
  • Loading branch information
lcreid authored Nov 23, 2022
1 parent d10470c commit f0e42f7
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,13 @@ end

require 'bundler/gem_tasks'

require 'rake/testtask'
require "minitest/test_task"

Rake::TestTask.new(:test) do |t|
t.libs << 'test'
t.pattern = 'test/**/*_test.rb'
t.verbose = false
Minitest::TestTask.create(:test) do |t|
t.libs << "test"
t.libs << "lib"
t.warning = false
t.test_globs = ["test/**/*_test.rb"]
end

# This automatically updates GitHub Releases whenever we `rake release` the gem
Expand Down

0 comments on commit f0e42f7

Please sign in to comment.