From 7025d7769dc53f0a3ffab8b537727ef3fee367fc Mon Sep 17 00:00:00 2001 From: Matthew Draper Date: Fri, 5 Sep 2014 23:32:48 +0930 Subject: For now, we will keep sorting the tests. This reverts commits e969c928463e329fd6529ac59cad96385c538ffb and bd2b3fbe54e750ba97469a7896e8d143d6dfd465. --- actionpack/Rakefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'actionpack/Rakefile') diff --git a/actionpack/Rakefile b/actionpack/Rakefile index cf20751687..af075f82ad 100644 --- a/actionpack/Rakefile +++ b/actionpack/Rakefile @@ -9,7 +9,10 @@ task :default => :test # Run the unit tests Rake::TestTask.new do |t| t.libs << 'test' - t.test_files = test_files + + # make sure we include the tests in alphabetical order as on some systems + # this will not happen automatically and the tests (as a whole) will error + t.test_files = test_files.sort t.warning = true t.verbose = true -- cgit v1.2.3