diff options
author | Rafael França <rafaelmfranca@gmail.com> | 2018-06-26 14:15:10 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-06-26 14:15:10 -0400 |
commit | a399d96ed4576f429cf6f809110bf6c0fa67bb7d (patch) | |
tree | 3d83e56ad774995023acd5483d7a5ddbfe31e955 /railties | |
parent | 7c769234f6070e9dcc17f92d448e770358dd57e4 (diff) | |
parent | 09f9a7a5b6464407ab611395b2c212edd74818a8 (diff) | |
download | rails-a399d96ed4576f429cf6f809110bf6c0fa67bb7d.tar.gz rails-a399d96ed4576f429cf6f809110bf6c0fa67bb7d.tar.bz2 rails-a399d96ed4576f429cf6f809110bf6c0fa67bb7d.zip |
Merge pull request #33225 from utilum/railties_testopts
Enable TESTOPTS in railties tests
Diffstat (limited to 'railties')
-rw-r--r-- | railties/Rakefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/Rakefile b/railties/Rakefile index 8251b2bb32..f918329df3 100644 --- a/railties/Rakefile +++ b/railties/Rakefile @@ -46,7 +46,7 @@ namespace :test do # We could run these in parallel, but pretty much all of the # railties tests already run in parallel, so ¯\_(⊙︿⊙)_/¯ Process.waitpid fork { - ARGV.clear + ARGV.clear.push ENV["TESTOPTS"] Rake.application = nil load file |