We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a6304de commit da0da90Copy full SHA for da0da90
test/integration/test_i_aws_encrytion_sdk_client.py
@@ -13,7 +13,6 @@
13
"""Integration test suite for `aws_encryption_sdk`."""
14
import io
15
import logging
16
-import unittest
17
18
import pytest
19
from botocore.exceptions import BotoCoreError
@@ -69,8 +68,9 @@ def test_remove_bad_client():
69
68
assert not test._regional_clients
70
71
72
-class TestKMSThickClientIntegration(unittest.TestCase):
73
- def setUp(self):
+class TestKMSThickClientIntegration(object):
+ @pytest.fixture(autouse=True)
+ def apply_fixtures(self):
74
self.kms_master_key_provider = setup_kms_master_key_provider()
75
76
def test_encryption_cycle_default_algorithm_framed_stream(self):
0 commit comments