Skip to content
Closed
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: 3 additions & 1 deletion tests/internal/service_name/test_extra_services_names.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,9 @@
import pytest


@pytest.mark.skipif(sys.platform in ("win32", "cygwin"), reason="Fork not supported on Windows")
@pytest.mark.skipif(
sys.platform in ("win32", "cygwin", "macos"), reason="Fork not supported on Windows; Test is flaky on macos"
)
def test_config_extra_service_names_fork(run_python_code_in_subprocess):
code = """
import ddtrace.auto
Expand Down
Loading