Commit 520378f8 authored by Ezio Melotti's avatar Ezio Melotti

#17079: test_ctypes now works with unittest test discovery. Patch by Zachary Ware.

parent 4b231a7d
import unittest
from test.support import run_unittest, import_module
from test.support import import_module
# Skip tests if _ctypes module was not built.
import_module('_ctypes')
import ctypes.test
def test_main():
def load_tests(*args):
skipped, testcases = ctypes.test.get_tests(ctypes.test, "test_*.py", verbosity=0)
suites = [unittest.makeSuite(t) for t in testcases]
run_unittest(unittest.TestSuite(suites))
return unittest.TestSuite(suites)
if __name__ == "__main__":
test_main()
unittest.main()
......@@ -644,6 +644,9 @@ Tests
- Issue #15539: Added regression tests for Tools/scripts/pindent.py.
- Issue #17079: test_ctypes now works with unittest test discovery.
Patch by Zachary Ware.
- Issue #17304: test_hash now works with unittest test discovery.
Patch by Zachary Ware.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment