From a0322afec39a4a6e1547a3299864cd8d6d1a2307 Mon Sep 17 00:00:00 2001 From: Alexander Todorov Date: Wed, 28 Aug 2019 11:04:36 +0300 Subject: [PATCH] Skip Azure test b/c misconfigured infra & creds Also causes failures on the Cockpit side of things, see https://github.com/cockpit-project/cockpit/pull/12645 --- test/check-cloud | 3 +++ 1 file changed, 3 insertions(+) diff --git a/test/check-cloud b/test/check-cloud index 6877390b..b6ccf85a 100755 --- a/test/check-cloud +++ b/test/check-cloud @@ -1,5 +1,7 @@ #!/usr/bin/python3 +import unittest + import composertest @@ -7,6 +9,7 @@ class TestCloud(composertest.ComposerTestCase): def test_aws(self): self.runCliTest("/tests/cli/test_build_and_deploy_aws.sh") + @unittest.skip('Infra is misconfigured and this was failing in the past') def test_azure(self): self.runCliTest("/tests/cli/test_build_and_deploy_azure.sh")