mirror of
https://github.com/python/cpython.git
synced 2025-10-20 08:23:47 +00:00
15 lines
417 B
Python
15 lines
417 B
Python
![]() |
from test import support
|
||
|
from tkinter.test import runtktests
|
||
|
|
||
|
def test_main(enable_gui=False):
|
||
|
if enable_gui:
|
||
|
if support.use_resources is None:
|
||
|
support.use_resources = ['gui']
|
||
|
elif 'gui' not in support.use_resources:
|
||
|
support.use_resources.append('gui')
|
||
|
|
||
|
support.run_unittest(*runtktests.get_tests(text=False))
|
||
|
|
||
|
if __name__ == '__main__':
|
||
|
test_main(enable_gui=True)
|