mirror of
https://github.com/haml/haml.git
synced 2022-11-09 12:33:31 -05:00
Make sure we don't run linked Rails tests.
This commit is contained in:
parent
c2ad4bd281
commit
0f49933913
1 changed files with 3 additions and 1 deletions
4
Rakefile
4
Rakefile
|
@ -19,7 +19,9 @@ require 'rake/testtask'
|
|||
|
||||
Rake::TestTask.new do |t|
|
||||
t.libs << 'lib'
|
||||
t.pattern = 'test/**/*_test.rb'
|
||||
test_files = FileList['test/**/*_test.rb']
|
||||
test_files.exclude('test/rails/*')
|
||||
t.test_files = test_files
|
||||
t.verbose = true
|
||||
end
|
||||
Rake::Task[:test].send(:add_comment, <<END)
|
||||
|
|
Loading…
Reference in a new issue