rubyx/test/test_all.rb
Torsten Ruger 77cbc0ad6a always use fail fast (in dev)
but not for the travis run (or test_all check)
2018-08-06 13:07:06 +03:00

8 lines
150 B
Ruby
Executable File

ENV["TEST_ALL"] = "true"
require_relative "helper"
Dir["test/**/test_*.rb"].each { |f|
next if f.include?("stash/")
require_relative "../#{f}"
}