[Python-Dev] [Python-checkins] r86441 - python/branches/py3k/Lib/test/test_nntplib.py (original) (raw)

Terry Reedy tjreedy at udel.edu
Sat Nov 13 02:31:49 CET 2010


On 11/12/2010 7:28 PM, antoine.pitrou wrote:

Author: antoine.pitrou Date: Sat Nov 13 01:28:53 2010 New Revision: 86441

Log: Switch from gmane to another provider for NNTP tests (as gmane isn't reliable enough). Also, use setUpClass in order to connect only once per test run.

class NetworkedNNTPSSLTests(NetworkedNNTPTestsMixin, unittest.TestCase): - NNTPHOST = 'snews.gmane.org' - GROUPNAME = 'gmane.comp.python.devel' - GROUPPAT = 'gmane.comp.python.d*'

gmane is most problematical on weekends.

+ NNTPHOST = 'nntp.aioe.org' + GROUPNAME = 'comp.lang.python' + GROUPPAT = 'comp.lang.*'

aioe went away for several months a couple of years ago or so. Let us hope it stays up for awhile now. The ssl connection currently does not work (expired certificate).

Terry



More information about the Python-Dev mailing list