Skip to content

Commit

Permalink
Add a unittest.skip marker to test_win32com_ensure_dispatch.
Browse files Browse the repository at this point in the history
  • Loading branch information
junkmd committed Dec 8, 2024
1 parent fd44771 commit d589ed3
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion comtypes/test/test_dispinterface.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,11 @@ def tearDownModule():

@unittest.skipIf(IMPORT_PYWIN32_FAILED, "This depends on 'pywin32'.")
class Test_win32com(unittest.TestCase):
def test_win32com(self):
@unittest.skip(
"It likely fails due to bugs in `GenerateChildFromTypeLibSpec` "
"or `GetModuleForCLSID`."
)
def test_win32com_ensure_dispatch(self):
# EnsureDispatch is case-sensitive
d = EnsureDispatch("TestDispServerLib.TestDispServer")

Expand Down

0 comments on commit d589ed3

Please sign in to comment.