mirror of
https://github.com/ticky/wayback-classic.git
synced 2026-04-17 13:07:38 -04:00
12 lines
298 B
Ruby
12 lines
298 B
Ruby
require 'rake/testtask'
|
|
|
|
Rake::TestTask.new do |task|
|
|
# On GitHub Actions CI, gems install under a "vendor" directory in here,
|
|
# so we have to glob our way around that!
|
|
task.test_files = FileList['./{[!vendor/]**/*,*}_test.rb']
|
|
task.verbose = true
|
|
end
|
|
desc 'Run tests'
|
|
|
|
task default: :test
|