mirror of
https://github.com/heartcombo/devise.git
synced 2026-01-08 22:37:57 -05:00
Also change back to run CI on ubuntu-latest which should work with all Ruby versions supported now.
13 lines
347 B
Ruby
Executable File
13 lines
347 B
Ruby
Executable File
#!/usr/bin/env ruby
|
|
$: << File.expand_path(File.expand_path('../../test', __FILE__))
|
|
|
|
require 'bundler/setup'
|
|
require 'rails/test_unit/runner'
|
|
require 'rails/test_unit/reporter'
|
|
require 'rails/test_unit/line_filtering'
|
|
|
|
Rails::TestUnitReporter.executable = 'bin/test'
|
|
|
|
Rails::TestUnit::Runner.parse_options(ARGV)
|
|
Rails::TestUnit::Runner.run(ARGV)
|