Skip to content

Commit

Permalink
test: Avoid flakiness in test_path_parameters_encoding
Browse files Browse the repository at this point in the history
  • Loading branch information
Stranger6667 committed May 7, 2021
1 parent b78a164 commit 4e2114c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion test/runner/test_runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -453,7 +453,9 @@ def test_path_parameters_encoding(real_app_schema):
# NOTE. WSGI and ASGI applications decodes %2F as / and returns 404
# When API operation has a path parameter
results = execute(
real_app_schema, checks=(status_code_conformance,), hypothesis_settings=hypothesis.settings(derandomize=True)
real_app_schema,
checks=(status_code_conformance,),
hypothesis_settings=hypothesis.settings(derandomize=True, deadline=None),
)
# Then there should be no failures
# since all path parameters are quoted
Expand Down

0 comments on commit 4e2114c

Please sign in to comment.