Do not load fog configuration if feature is disabled
This commit is contained in:
parent
e973286766
commit
ccf8970047
1 changed files with 5 additions and 3 deletions
|
@ -105,10 +105,12 @@ RSpec.configure do |config|
|
||||||
config.before(:all) {
|
config.before(:all) {
|
||||||
Warden.test_mode!
|
Warden.test_mode!
|
||||||
|
|
||||||
|
if Features.remote_storage
|
||||||
VCR.use_cassette("ovh_storage_init") do
|
VCR.use_cassette("ovh_storage_init") do
|
||||||
CarrierWave.configure do |config|
|
CarrierWave.configure do |config|
|
||||||
config.fog_credentials = { provider: 'OpenStack' }
|
config.fog_credentials = { provider: 'OpenStack' }
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
end
|
||||||
}
|
}
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue