Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bcbeff5 commit 8b4210cCopy full SHA for 8b4210c
1 file changed
Lib/test/test_dtrace.py
@@ -8,7 +8,7 @@
8
import unittest
9
10
from test import support
11
-from test.support import findfile
+from test.support import findfile, MS_WINDOWS
12
13
14
if not support.has_subprocess_support:
@@ -103,6 +103,7 @@ class SystemTapBackend(TraceBackend):
103
COMMAND = ["stap", "-g"]
104
105
106
+@unittest.skipIf(MS_WINDOWS, "Tests not compliant with trace on Windows.")
107
class TraceTests:
108
# unittest.TestCase options
109
maxDiff = None
0 commit comments