Staging
v0.5.1
Raw File
test_ttk_textonly.py
from test import support
from test.support import import_helper


# Skip this test if _tkinter does not exist.
import_helper.import_module('_tkinter')

from tkinter.test import runtktests

def test_main():
    support.run_unittest(
            *runtktests.get_tests(gui=False, packages=['test_ttk']))

if __name__ == '__main__':
    test_main()
back to top