Another attempt at running Travis tests properly

This commit is contained in:
Jonathan Abbett 2021-04-15 14:20:13 -04:00
parent bbe05aeaf4
commit 7ece8d904c
2 changed files with 5 additions and 5 deletions

View File

@ -1,10 +1,10 @@
language: ruby language: ruby
env: env:
- 'RAILS_VERSION=5.1' - 'RAILS_VERSION=5.1.0'
- 'RAILS_VERSION=5.2' - 'RAILS_VERSION=5.2.0'
- 'RAILS_VERSION=6.0' - 'RAILS_VERSION=6.0.0'
- 'RAILS_VERSION=6.1' - 'RAILS_VERSION=6.1.0'
before_script: before_script:
- 'yarn' - 'yarn'

View File

@ -26,10 +26,10 @@ require "bundler/gem_tasks"
require "rake/testtask" require "rake/testtask"
Rake::TestTask.new(:test) do |t| Rake::TestTask.new(:test) do |t|
t.libs << "lib"
t.libs << "test" t.libs << "test"
t.pattern = "test/**/*_test.rb" t.pattern = "test/**/*_test.rb"
t.verbose = false t.verbose = false
t.warning = false
end end
task default: :test task default: :test