diff options
author | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2015-01-02 00:09:10 -0300 |
---|---|---|
committer | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2015-01-02 00:09:10 -0300 |
commit | 8a1c3476a62005e3cb7cfe440da71b94fab8aa5b (patch) | |
tree | 1eaef75e4878f2c10767c7e4346794691593ff6c /activejob/Rakefile | |
parent | ef877bbc9343e9890d9b46aa738842827f8cc29f (diff) | |
download | rails-8a1c3476a62005e3cb7cfe440da71b94fab8aa5b.tar.gz rails-8a1c3476a62005e3cb7cfe440da71b94fab8aa5b.tar.bz2 rails-8a1c3476a62005e3cb7cfe440da71b94fab8aa5b.zip |
Do not run integration tests for the test adapter
Diffstat (limited to 'activejob/Rakefile')
-rw-r--r-- | activejob/Rakefile | 2 |
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 |