Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions comtypes/test/test_comserver.py
Original file line number Diff line number Diff line change
Expand Up @@ -156,12 +156,16 @@ def create_object(self):
)


class TestCase(unittest.TestCase):
class TestEvents(unittest.TestCase):
def test(self):
import comtypes.test.test_comserver

doctest.testmod(comtypes.test.test_comserver, optionflags=doctest.ELLIPSIS)
doctest.testmod(
comtypes.test.test_comserver, verbose=False, optionflags=doctest.ELLIPSIS
)


class ShowEventsExamples:
# The following functions are never called, they only contain doctests:

def ShowEventsFloat(self):
Expand Down