We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2a4ec52 commit 79e248cCopy full SHA for 79e248c
tests/e2e/idempotency_redis/conftest.py
@@ -1,7 +1,5 @@
1
import pytest
2
3
-from tests.e2e.idempotency_redis.infrastructure import IdempotencyRedisServerlessStack
4
-
5
6
@pytest.fixture(autouse=True, scope="package")
7
def infrastructure():
@@ -12,8 +10,6 @@ def infrastructure():
12
10
Dict[str, str]
13
11
CloudFormation Outputs from deployed infrastructure
14
"""
15
- stack = IdempotencyRedisServerlessStack()
16
- try:
17
- yield stack.deploy()
18
- finally:
19
- stack.delete()
+
+ # MAINTENANCE: Add the Stack constructor when Python 3.7 is dropped
+ return None
0 commit comments