summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_support.py
Commit message (Expand)AuthorAgeFilesLines
* Merged revisions 82850 via svnmerge fromAlexander Belopolsky2010-07-141-1/+1
* #8889: rewrite transient_internet so we don't use EAI_NODATA on FreeBSD.R. David Murray2010-06-031-7/+22
* Issue #8835: test_support.transient_internet() catchs gaierror(EAI_NONAME) andVictor Stinner2010-05-271-1/+3
* Issue #7449, part 1: fix test_support.py for Python compiled without threadVictor Stinner2010-04-271-4/+18
* adjust gc_collect for JythonPhilip Jenvey2010-04-101-1/+3
* #8155: Preserve backward compatibility for test_support.check_warnings(). Ad...Florent Xicluna2010-03-181-3/+8
* Issue #7783 and #7787: open_urlresource invalidates the outdated files from t...Florent Xicluna2010-03-151-4/+24
* Do not chdir when running test_xml_etree, and enhance the findfile helper.Florent Xicluna2010-03-131-1/+3
* #7772: Fix test_py3kwarn. Now the test suite could pass with "-3" flag.Florent Xicluna2010-03-091-4/+4
* Refresh the documentation for the test.test_support module.Florent Xicluna2010-03-071-5/+5
* Issue #7849: Now the utility ``check_warnings`` verifies if the warnings areFlorent Xicluna2010-03-071-9/+90
* skip tests with a non-ascii cwd when the file system encoding is asciiEzio Melotti2010-02-201-0/+7
* #7712: add a temp_cwd context manager to test_support and use it in regrtest ...Ezio Melotti2010-02-101-18/+33
* Fix a typo in a docstring introduced in r77956.Brett Cannon2010-02-031-1/+1
* Update a docstring to suggest using importlib.import_module instead of callin...Brett Cannon2010-02-031-1/+1
* remove archaic functions from test_supportEzio Melotti2010-01-241-25/+1
* Use a custom timeout in test_support.open_urlresource.Antoine Pitrou2009-11-011-2/+10
* Issue #7222: Make thread "reaping" more reliable so that referenceAntoine Pitrou2009-10-301-12/+17
* Clarify error report message, and don't recommend running in verboseR. David Murray2009-10-191-1/+3
* Silence a deprecation warning by using the appropriate replacement constructNick Coghlan2009-10-181-1/+3
* Move restoration of the os.environ object into the context manager where it b...Nick Coghlan2009-10-171-0/+1
* Don't invoke reload(sys) and use StringIO objects instead of real files to ca...Nick Coghlan2009-10-171-0/+3
* Restore original sys.path when running TTK testsNick Coghlan2009-10-171-0/+25
* put downloaded test support files in Lib/test/data instead of the cwdBenjamin Peterson2009-07-111-5/+4
* convert usage of fail* to assert*Benjamin Peterson2009-06-301-1/+1
* Issue #6215: backport the 3.1 io libAntoine Pitrou2009-06-121-1/+16
* remove function importBenjamin Peterson2009-05-311-1/+1
* Issue #6152: New option '-j'/'--multiprocess' for regrtest allows runningAntoine Pitrou2009-05-311-0/+4
* a useful decorator for cleaning up threadsBenjamin Peterson2009-05-141-0/+11
* Make test.test_support.EnvironmentVarGuard behave like a dictionary.Walter Dörwald2009-05-011-11/+25
* Issue #5837: Certain sequences of calls to set() and unset() forWalter Dörwald2009-04-251-15/+17
* Issue 5354: Change API for import_fresh_module() to better support test_warni...Nick Coghlan2009-04-221-14/+48
* Issue 5354: Provide a standardised testing mechanism for doing fresh imports ...Nick Coghlan2009-04-111-7/+48
* Improve test_support.import_module docstring, removeR. David Murray2009-03-311-16/+14
* A few more test skips via import_module, and change import_module toR. David Murray2009-03-311-2/+2
* Change more tests to use import_module for the modules thatR. David Murray2009-03-301-7/+10
* Add import_function method to test.test_support, and modify a number ofR. David Murray2009-03-301-0/+14
* ** is required hereBenjamin Peterson2009-03-261-1/+1
* must pass argument to get expected behavior ;)Benjamin Peterson2009-03-261-1/+1
* fix incorrect auto-translation of TestSkipped -> unittest.SkipTestBenjamin Peterson2009-03-261-1/+1
* fix namingBenjamin Peterson2009-03-261-1/+1
* remove test_support.TestSkipped and just use unittest.SkipTestBenjamin Peterson2009-03-261-14/+4
* add some useful utilities for skipping tests with unittest's new skipping abi...Benjamin Peterson2009-03-261-1/+67
* this can be slightly less uglyBenjamin Peterson2009-03-251-1/+1
* this is better written using assertRaisesBenjamin Peterson2009-03-241-6/+2
* make bad file descriptor tests more robustBenjamin Peterson2009-01-191-0/+12
* Issue #3781: Final cleanup of warnings.catch_warnings and its usage in the te...Nick Coghlan2008-09-111-1/+24
* warnings.catch_warnings() now returns a list or None instead of the customBrett Cannon2008-09-091-6/+2
* Move test.test_support.catch_warning() to the warnings module, rename itBrett Cannon2008-09-021-65/+2
* Security patches from Apple: prevent int overflow when allocating memoryNeal Norwitz2008-07-311-0/+25