ยปCore Development>Code coverage>Lib/test/test_ttk_textonly.py

Python code coverage for Lib/test/test_ttk_textonly.py

#countcontent
1n/afrom test import support
2n/a
3n/a# Skip this test if _tkinter does not exist.
4n/asupport.import_module('_tkinter')
5n/a
6n/afrom tkinter.test import runtktests
7n/a
8n/adef test_main():
9n/a support.run_unittest(
10n/a *runtktests.get_tests(gui=False, packages=['test_ttk']))
11n/a
12n/aif __name__ == '__main__':
13n/a test_main()