Do not run integration tests for the test adapter

This commit is contained in:
Rafael Mendonça França 2015-01-02 00:09:10 -03:00
parent ef877bbc93
commit 8a1c3476a6
1 changed files with 1 additions and 1 deletions

View File

@ -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