Skip to content

Commit 36aa081

Browse files
miss-islingtonvstinnerFidget-Spinner
authored
[3.13] gh-138744: Skip test_dtrace on Windows (GH-144657) (#144668)
[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>
1 parent c49835a commit 36aa081

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Lib/test/test_dtrace.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
import unittest
99

1010
from test import support
11-
from test.support import findfile
11+
from test.support import findfile, MS_WINDOWS
1212

1313

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

105105

106+
@unittest.skipIf(MS_WINDOWS, "Tests not compliant with trace on Windows.")
106107
class TraceTests:
107108
# unittest.TestCase options
108109
maxDiff = None

0 commit comments

Comments
 (0)