From 82f25aa5b547db0b344bfdb3b628e23e1673adb6 Mon Sep 17 00:00:00 2001 From: Petrik Date: Wed, 25 Aug 2021 10:33:35 +0200 Subject: [PATCH] Temporarily disable Azure service tests The Azure service tests are currently failing on the main branch, probably because of configuration. We can temporarily disable them while we get things working again. --- activestorage/test/test_helper.rb | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/activestorage/test/test_helper.rb b/activestorage/test/test_helper.rb index 0847d9becb673..798c3893c206b 100644 --- a/activestorage/test/test_helper.rb +++ b/activestorage/test/test_helper.rb @@ -27,6 +27,12 @@ puts "Missing service configuration file in test/service/configurations.yml" {} end +# Azure service tests are currently failing on the main branch. +# We temporarily disable them while we get things working again. +if ENV["CI"] + SERVICE_CONFIGURATIONS.delete(:azure) + SERVICE_CONFIGURATIONS.delete(:azure_public) +end require "tmpdir"