Skip to content

Commit 916ccb0

Browse files
Disabling Redis e2e until we drop Python 3.7
1 parent 2a4ec52 commit 916ccb0

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

tests/e2e/idempotency_redis/conftest.py

+6-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
import pytest
22

3-
from tests.e2e.idempotency_redis.infrastructure import IdempotencyRedisServerlessStack
4-
53

64
@pytest.fixture(autouse=True, scope="package")
75
def infrastructure():
@@ -12,8 +10,14 @@ def infrastructure():
1210
Dict[str, str]
1311
CloudFormation Outputs from deployed infrastructure
1412
"""
13+
14+
return None
15+
16+
# MAINTENANCE: Uncomment the code below to enable Redis e2e tests when dropping Python 3.7
17+
"""
1518
stack = IdempotencyRedisServerlessStack()
1619
try:
1720
yield stack.deploy()
1821
finally:
1922
stack.delete()
23+
"""

0 commit comments

Comments
 (0)