Skip to content
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.14] gh-138744: Skip test_dtrace on Windows (GH-144657)
(cherry picked from commit 8b4210c)

Co-authored-by: Victor Stinner <vstinner@python.org>
Co-authored-by: Ken Jin <kenjin@python.org>
  • Loading branch information
2 people authored and miss-islington committed Feb 10, 2026
commit 553bb2090add87a02f013f714dbe4d0f700bd722
3 changes: 2 additions & 1 deletion Lib/test/test_dtrace.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
import unittest

from test import support
from test.support import findfile
from test.support import findfile, MS_WINDOWS


if not support.has_subprocess_support:
Expand Down Expand Up @@ -103,6 +103,7 @@ class SystemTapBackend(TraceBackend):
COMMAND = ["stap", "-g"]


@unittest.skipIf(MS_WINDOWS, "Tests not compliant with trace on Windows.")
class TraceTests:
# unittest.TestCase options
maxDiff = None
Expand Down
Loading