Skip to content

Commit 89cc820

Browse files
committed
tornado: skip flaky tests
Signed-off-by: Varsha GS <varsha.gs@ibm.com>
1 parent e834cb8 commit 89cc820

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

tests/frameworks/test_tornado_server.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -266,6 +266,7 @@ async def test():
266266
assert "Server-Timing" in response.headers
267267
assert response.headers["Server-Timing"] == "intid;desc=%s" % traceId
268268

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

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

394+
@pytest.mark.skip("Non deterministic (flaky) testcase")
392395
def test_get_504(self) -> None:
393396
async def test():
394397
with tracer.start_as_current_span("test"):

0 commit comments

Comments
 (0)