(self)
| 1410 | class TestAzureEncryption(AzureGCPEncryptionTestMixin, EncryptionIntegrationTest): |
| 1411 | @unittest.skipUnless(any(AZURE_CREDS.values()), "Azure environment credentials are not set") |
| 1412 | def setUp(self): |
| 1413 | self.KMS_PROVIDER_MAP = {"azure": AZURE_CREDS} |
| 1414 | self.DEK = json_data(BASE, "custom", "azure-dek.json") |
| 1415 | self.SCHEMA_MAP = json_data(BASE, "custom", "azure-gcp-schema.json") |
| 1416 | super().setUp() |
| 1417 | |
| 1418 | def test_explicit(self): |
| 1419 | return self._test_explicit( |