From fe9625c0225020ea5ce89422c43c5a05851ad506 Mon Sep 17 00:00:00 2001 From: Petrik de Heus Date: Wed, 25 Aug 2021 11:22:39 +0200 Subject: [PATCH] Temporarily disable Azure service tests (#43091) 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 0847d9becb..798c3893c2 100644 --- a/activestorage/test/test_helper.rb +++ b/activestorage/test/test_helper.rb @@ -27,6 +27,12 @@ rescue Errno::ENOENT 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"