We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2a4ec52 commit 916ccb0Copy full SHA for 916ccb0
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,14 @@ def infrastructure():
12
10
Dict[str, str]
13
11
CloudFormation Outputs from deployed infrastructure
14
"""
+
+ return None
15
16
+ # MAINTENANCE: Uncomment the code below to enable Redis e2e tests when dropping Python 3.7
17
+ """
18
stack = IdempotencyRedisServerlessStack()
19
try:
20
yield stack.deploy()
21
finally:
22
stack.delete()
23
0 commit comments