Skip to content

Commit 79e248c

Browse files
chore(ci): Disable Redis e2e until we drop Python 3.7 (#3652)
* Disabling Redis e2e until we drop Python 3.7 * Disabling Redis e2e until we drop Python 3.7
1 parent 2a4ec52 commit 79e248c

File tree

1 file changed

+3
-7
lines changed

1 file changed

+3
-7
lines changed
+3-7
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,6 @@ def infrastructure():
1210
Dict[str, str]
1311
CloudFormation Outputs from deployed infrastructure
1412
"""
15-
stack = IdempotencyRedisServerlessStack()
16-
try:
17-
yield stack.deploy()
18-
finally:
19-
stack.delete()
13+
14+
# MAINTENANCE: Add the Stack constructor when Python 3.7 is dropped
15+
return None

0 commit comments

Comments
 (0)