Skip to content

Commit

Permalink
Add a unittest.skip marker to TestLocalServer.test_get_typeinfo
Browse files Browse the repository at this point in the history
  • Loading branch information
junkmd committed Dec 5, 2024
1 parent ccefe77 commit 1238596
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions comtypes/test/test_comserver.py
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,12 @@ def create_object(self):
"TestComServerLib.TestComServer", clsctx=comtypes.CLSCTX_LOCAL_SERVER
)

@unittest.skip("This fails. Why?")
def test_get_typeinfo(self):
# Calling `GetTypeInfo` occurs;
# OSError: exception: access violation reading 0x0000000000000000
pass


try:
from win32com.client import Dispatch
Expand Down

0 comments on commit 1238596

Please sign in to comment.