aboutsummaryrefslogtreecommitdiffstats
path: root/activejob
diff options
context:
space:
mode:
authorRafael Mendonça França <rafaelmfranca@gmail.com>2015-01-02 00:09:10 -0300
committerRafael Mendonça França <rafaelmfranca@gmail.com>2015-01-02 00:09:10 -0300
commit8a1c3476a62005e3cb7cfe440da71b94fab8aa5b (patch)
tree1eaef75e4878f2c10767c7e4346794691593ff6c /activejob
parentef877bbc9343e9890d9b46aa738842827f8cc29f (diff)
downloadrails-8a1c3476a62005e3cb7cfe440da71b94fab8aa5b.tar.gz
rails-8a1c3476a62005e3cb7cfe440da71b94fab8aa5b.tar.bz2
rails-8a1c3476a62005e3cb7cfe440da71b94fab8aa5b.zip
Do not run integration tests for the test adapter
Diffstat (limited to 'activejob')
-rw-r--r--activejob/Rakefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/activejob/Rakefile b/activejob/Rakefile
index b215ba65fa..1922f256ec 100644
--- a/activejob/Rakefile
+++ b/activejob/Rakefile
@@ -20,7 +20,7 @@ namespace :test do
desc 'Run integration tests for all adapters'
task :integration do
- run_without_aborting ACTIVEJOB_ADAPTERS.map { |a| "test:integration:#{a}" }
+ run_without_aborting (ACTIVEJOB_ADAPTERS - ['test']).map { |a| "test:integration:#{a}" }
end
task 'env:integration' do