Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

tornado_server: skip flaky tests #632

Merged
merged 1 commit into from
Sep 26, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions tests/frameworks/test_tornado_server.py
Original file line number Diff line number Diff line change
Expand Up @@ -266,6 +266,7 @@ async def test():
assert "Server-Timing" in response.headers
assert response.headers["Server-Timing"] == "intid;desc=%s" % traceId

@pytest.mark.skip("Non deterministic (flaky) testcase")
def test_get_405(self) -> None:
async def test():
with tracer.start_as_current_span("test"):
Expand Down Expand Up @@ -327,6 +328,7 @@ async def test():
assert "Server-Timing" in response.headers
assert response.headers["Server-Timing"] == "intid;desc=%s" % traceId

@pytest.mark.skip("Non deterministic (flaky) testcase")
def test_get_500(self) -> None:
async def test():
with tracer.start_as_current_span("test"):
Expand Down Expand Up @@ -389,6 +391,7 @@ async def test():
assert "Server-Timing" in response.headers
assert response.headers["Server-Timing"] == "intid;desc=%s" % traceId

@pytest.mark.skip("Non deterministic (flaky) testcase")
def test_get_504(self) -> None:
async def test():
with tracer.start_as_current_span("test"):
Expand Down
Loading