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.
This commit is contained in:
Petrik de Heus 2021-08-25 11:22:39 +02:00 committed by GitHub
parent 915b9cdbb7
commit fe9625c022
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 0 deletions

View File

@ -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"