blob: 131e420013457f14cb44b0630f04cb3983af916e (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
import os
import sys
from test import support
from tkinter.test import runtktests
def test_main():
support.run_unittest(
*runtktests.get_tests(gui=False, packages=['test_ttk']))
if __name__ == '__main__':
test_main()
|