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
This might be a bug on the `pywin32` side.
See also #693 (comment)
  • Loading branch information
junkmd committed Dec 8, 2024
1 parent ce02f09 commit d2d87c9
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions comtypes/test/test_dispinterface.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,10 @@ def tearDownModule():

@unittest.skipIf(IMPORT_PYWIN32_FAILED, "This depends on 'pywin32'.")
class Test_win32com(unittest.TestCase):
@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 d2d87c9

Please sign in to comment.