Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 2 additions & 0 deletions tests/profiling_v2/collector/test_stack_asyncio.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,9 @@
env=dict(
DD_PROFILING_OUTPUT_PPROF="/tmp/test_stack_asyncio",
),
err=None,
)
# For macOS: err=None ignores expected stderr from tracer failing to connect to agent (not relevant to this test)
def test_asyncio():
import asyncio
import os
Expand Down
3 changes: 2 additions & 1 deletion tests/profiling_v2/collector/test_threading.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,8 @@ def test_patch():


@pytest.mark.skipif(not sys.platform.startswith("linux"), reason="only works on linux")
@pytest.mark.subprocess()
@pytest.mark.subprocess(err=None)
# For macOS: Could print 'Error uploading' but okay to ignore since we are checking if native_id is set
def test_user_threads_have_native_id():
from os import getpid
from threading import Thread
Expand Down
Loading