1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
|
# frozen_string_literal: true
if ENV['COVERAGE']
require 'simplecov'
SimpleCov.start do
add_filter 'test'
end
end
if !ENV['INTEGRATION']
RSpec.configure do |c|
c.filter_run_excluding :integration => true
end
end
if !ENV['PERFORMANCE']
RSpec.configure do |c|
c.filter_run_excluding :performance => true
end
end
if !ENV['BLOBSTORE']
RSpec.configure do |c|
c.filter_run_excluding :blobstore => true
end
end
$LOAD_PATH.unshift File.expand_path('../../lib', __FILE__)
require 'fog/aliyun'
|