Skip to content
Draft
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
4 changes: 4 additions & 0 deletions tests/contrib/fastapi/test_fastapi.py
Original file line number Diff line number Diff line change
Expand Up @@ -624,6 +624,7 @@ def _run_websocket_send_only_test():
fastapi_unpatch()


@pytest.mark.skip(reason="asyncio loop-teardown STDERR noise fails subprocess empty-stderr check on 3.19")
@pytest.mark.subprocess(
env=dict(
DD_TRACE_WEBSOCKET_MESSAGES_ENABLED="true",
Expand All @@ -636,6 +637,7 @@ def test_traced_websocket(test_spans, snapshot_app):
_run_websocket_test()


@pytest.mark.skip(reason="asyncio loop-teardown STDERR noise fails subprocess empty-stderr check on 3.19")
@pytest.mark.subprocess(
env=dict(
DD_TRACE_WEBSOCKET_MESSAGES_ENABLED="true",
Expand All @@ -648,6 +650,7 @@ def test_websocket_only_sends(test_spans, snapshot_app):
_run_websocket_send_only_test()


@pytest.mark.skip(reason="asyncio loop-teardown STDERR noise fails subprocess empty-stderr check on 3.19")
@pytest.mark.subprocess(
env=dict(
DD_TRACE_WEBSOCKET_MESSAGES_ENABLED="true",
Expand All @@ -661,6 +664,7 @@ def test_websocket_tracing_sampling_not_inherited(test_spans, snapshot_app):
_run_websocket_test()


@pytest.mark.skip(reason="asyncio loop-teardown STDERR noise fails subprocess empty-stderr check on 3.19")
@pytest.mark.subprocess(
env=dict(
DD_TRACE_WEBSOCKET_MESSAGES_ENABLED="true",
Expand Down
Loading