summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_tk.py
Commit message (Collapse)AuthorAgeFilesLines
* Issue #18492: Allow all resources when tests are not run by regrtest.py.Zachary Ware2014-06-021-8/+2
| | | | This changeset also includes cleanup allowed by this behavior change.
* Issue #18604: Consolidated checks for GUI availability.Zachary Ware2014-05-021-4/+2
| | | | | | | | test_support._is_gui_available is now defined the same way on every platform, and now includes the Windows-specific check that had been in the Windows version of _is_gui_available and the OSX-specific check that was in runtktests.check_tk_availability. Also, every platform checks whether Tk can be instantiated (if the platform-specific checks passed).
* Issue #8716: Avoid crashes caused by Aqua Tk on OSX when attempting to runNed Deily2011-07-041-9/+3
| | | | | test_tk or test_ttk_guionly under a username that is not currently logged in to the console windowserver (as may be the case under buildbot or ssh).
* Remove unused imports in test modules.Georg Brandl2010-02-071-1/+0
|
* Restore sys.path in test_tkNick Coghlan2009-10-181-4/+4
|
* A few more test skips via import_module, and change import_module toR. David Murray2009-03-311-1/+5
| | | | | | | return the error message produced by importlib, so that if an import in the package whose import is being wrapped is what failed the skip message will contain the name of that module instead of the name of the wrapped module. Also fixed formatting of some previous comments.
* add missing importBenjamin Peterson2009-03-291-0/+1
|
* remove test_support.TestSkipped and just use unittest.SkipTestBenjamin Peterson2009-03-261-1/+1
|
* Checking for tk availability before continuing (basically the same that is ↵Guilherme Polo2009-02-091-1/+7
| | | | done in test_ttk_guionly)
* Some tests for Tkinter.Text.searchGuilherme Polo2009-02-091-0/+25