Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | bpo-45229: Remove test_main in many tests (GH-28405) | Serhiy Storchaka | 2021-09-19 | 1 | -5/+4 |
| | | | | | | | | | Instead of explicitly enumerate test classes for run_unittest() use the unittest ability to discover tests. This also makes these tests discoverable and runnable with unittest. load_tests() can be used for dynamic generating tests and adding doctests. setUpModule(), tearDownModule() and addModuleCleanup() can be used for running code before and after all module tests. | ||||
* | bpo-31724: Skip test_xmlrpc_net (GH-3921) | Zachary Ware | 2017-10-08 | 1 | -0/+2 |
| | | | | | With the upgrade of buildbot.python.org from Buildbot 0.8.x to 0.9.x, the xmlrpc interface has been removed. This test is now skipped until it can be rewritten to query a suitable substitute. | ||||
* | Issue #23277: Remove unused imports in tests. | Serhiy Storchaka | 2016-04-24 | 1 | -2/+0 |
| | |||||
* | Issue #23277: Remove unused sys and os imports | Berker Peksag | 2016-04-24 | 1 | -1/+0 |
| | | | | Patch by Jon Dufresne. | ||||
* | Issue #19936: Added executable bits or shebang lines to Python scripts which | Serhiy Storchaka | 2014-01-16 | 1 | -2/+0 |
|\ | | | | | | | | | | | | | requires them. Disable executable bits and shebang lines in test and benchmark files in order to prevent using a random system python, and in source files of modules which don't provide command line interface. Fixed shebang lines in the unittestgui and checkpip scripts. | ||||
| * | Issue #19936: Added executable bits or shebang lines to Python scripts which | Serhiy Storchaka | 2014-01-16 | 1 | -2/+0 |
| | | | | | | | | | | | | | | requires them. Disable executable bits and shebang lines in test and benchmark files in order to prevent using a random system python, and in source files of modules which don't provide command line interface. Fixed shebang line to use python3 executable in the unittestgui script. | ||||
* | | Issue 19572: More silently skipped tests explicitly skipped. | Zachary Ware | 2013-12-08 | 1 | -1/+0 |
|\ \ | |/ | |||||
| * | Issue 19572: More silently skipped tests explicitly skipped. | Zachary Ware | 2013-12-08 | 1 | -2/+0 |
| | | |||||
* | | #19192: Give up on time.xmlrpc.com as an xmlrpc network test. | R David Murray | 2013-10-11 | 1 | -27/+2 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | time.xmlrpc.com has come and gone over the years, and has been gone again for a while. The test did test one thing that the current xmlrpc tests don't: the use of multiple levels of attribute names in the call. So in addition to removing the network test, we add a test in xmlrpc of dotted name access. There should also be a test for when dotted name access is disallowed, but that requires more extensive test harness refactoring, and in any case was not tested by the network test we are deleting, since it is a server-side setting. This is a slightly simplified version of a patch by Vajrasky Kok. | ||||
* | | Issue #16717: get rid of socket.error, replace with OSError | Andrew Svetlov | 2012-12-18 | 1 | -2/+2 |
|/ | |||||
* | Merge with 3.2. | Georg Brandl | 2012-06-24 | 1 | -1/+1 |
|\ | |||||
| * | Refer test_xmlrpc_net to the new buildbot URL at buildbot.python.org. | Georg Brandl | 2012-06-24 | 1 | -1/+1 |
| | | |||||
* | | Merge test_xmlrpc_net fixes (issue #13434) | Antoine Pitrou | 2011-11-28 | 1 | -1/+2 |
|\ \ | |/ | |||||
| * | Fix resource warning in test_xmlrpc_net | Antoine Pitrou | 2011-11-28 | 1 | -0/+1 |
| | | |||||
| * | Issue #13434: skip the time.xmlrpc.com test, and reenable the buildbot test. | Antoine Pitrou | 2011-11-28 | 1 | -1/+1 |
| | | |||||
* | | Fix imports from collections.abc | Raymond Hettinger | 2011-02-23 | 1 | -2/+2 |
|/ | |||||
* | Disable test_python_builders in test_xmlrpc_net, following buildbot upgrade ↵ | Antoine Pitrou | 2010-11-10 | 1 | -0/+1 |
| | | | | on python.org | ||||
* | Fix test_xmlrpc_net to no longer fail since there are no more buildbots for ↵ | Brett Cannon | 2010-07-05 | 1 | -1/+1 |
| | | | | trunk. | ||||
* | convert shebang lines: python -> python3 | Benjamin Peterson | 2010-03-11 | 1 | -1/+1 |
| | |||||
* | Since time.xmlrpc.com is unreliable, add another test to test_xmlrpc_net | Antoine Pitrou | 2009-11-03 | 1 | -2/+17 |
| | |||||
* | convert old fail* assertions to assert* | Benjamin Peterson | 2009-06-30 | 1 | -1/+1 |
| | |||||
* | revert r64092 because http://xmlrpc.com is back up | Benjamin Peterson | 2008-06-11 | 1 | -2/+1 |
| | |||||
* | Temporarily disable test_xmlrpc_net because xmlrpc.com is broken | Benjamin Peterson | 2008-06-10 | 1 | -1/+2 |
| | |||||
* | Create http package. #2883. | Georg Brandl | 2008-05-26 | 1 | -1/+1 |
| | |||||
* | Create xmlrpc package. Issue #2886. | Georg Brandl | 2008-05-26 | 1 | -1/+1 |
| | |||||
* | #2621 rename test.test_support to test.support | Benjamin Peterson | 2008-05-20 | 1 | -3/+3 |
| | |||||
* | Be more forgiving if we get an error, there are lots of potential socket errors | Neal Norwitz | 2008-04-01 | 1 | -3/+1 |
| | |||||
* | Skip test if socket gets reset, the problem is on the other side. | Neal Norwitz | 2008-03-24 | 1 | -1/+11 |
| | |||||
* | Change xmlrpclib to use the newer httplib interface. | Jeremy Hylton | 2007-08-14 | 1 | -0/+36 |
Note that it's hard to test xmlrpclib, because the server it attempts to connect to doesn't seem to support the expected interfaces. Many of the links via xmlrpc.com are dead, so I couldn't find another server to use for tests. |