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 8755d02 commit 0a28275Copy full SHA for 0a28275
com/win32com/test/testall.py
@@ -1,5 +1,6 @@
1
import getopt
2
import os
3
+import platform
4
import re
5
import sys
6
import traceback
@@ -22,7 +23,6 @@
22
23
win32com.__path__[0] = win32com_src_dir
24
25
import pythoncom
-import win32com.client
26
from pywin32_testutil import TestLoader, TestRunner
27
from win32com.test.util import (
28
CapturingFunctionTestCase,
@@ -86,6 +86,9 @@ def ExecuteSilentlyIfOK(cmd, testcase):
86
class PyCOMTest(TestCase):
87
no_leak_tests = True # done by the test itself
88
89
+ @unittest.skipIf(
90
+ platform.machine() == "ARM64", "PyCOMTest cannot currently be run on ARM64"
91
+ )
92
def testit(self):
93
# Check that the item is registered, so we get the correct
94
# 'skipped' behaviour (and recorded as such) rather than either
0 commit comments