We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fc7afd5 commit 1737ba8Copy full SHA for 1737ba8
1 file changed
tests/integrations/aws_lambda/test_aws.py
@@ -57,6 +57,9 @@ def lambda_client():
57
58
@pytest.fixture(params=["python3.6", "python3.7", "python3.8", "python2.7"])
59
def run_lambda_function(tmpdir, lambda_client, request, relay_normalize):
60
+ if request.param == "python3.8":
61
+ pytest.xfail("Python 3.8 is currently broken")
62
+
63
def inner(code, payload):
64
runtime = request.param
65
tmpdir.ensure_dir("lambda_tmp").remove()
0 commit comments