1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

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

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