Skip to content

Commit 983c26c

Browse files
committed
Make TEST_FILES take a comma list of files.
1 parent 9d0786e commit 983c26c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Rakefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ def test_libs(mode='dblib')
1111
end
1212

1313
def test_files
14-
return Dir.glob(ENV['TEST_FILES']).sort if ENV['TEST_FILES']
14+
return ENV['TEST_FILES'].split(',').sort if ENV['TEST_FILES']
1515
files = Dir.glob("test/cases/**/*_test_sqlserver.rb").sort
1616
ar_path = Gem.loaded_specs['activerecord'].full_gem_path
1717
ar_cases = Dir.glob("#{ar_path}/test/cases/**/*_test.rb")

0 commit comments

Comments
 (0)