[issue22639] test "test_bad_address" fails on Python 3.4.2 under Linux Mint 13 Maya

Ned Deily report at bugs.python.org
Wed Oct 15 01:56:24 CEST 2014


Ned Deily added the comment:

I'm not sure what you are trying to do but there is no test module named test_bad_address in the standard library, which is why you get that error.  Doing a quick search of Lib/test shows three different cases of test_bad_address: in the test_ipaddress, test_urllib2_localnet, and test_urllibnet modules.  If you want to just run those tests, you'd need to specify the module names.  Plus two of them require network access so you'll need to enable the "network" test resource.  Try something like:

./python -m test -v -u network test_ipaddress test_urllib2_localnet test_urllibnet

----------
nosy: +ned.deily

_______________________________________
Python tracker <report at bugs.python.org>
<http://bugs.python.org/issue22639>
_______________________________________


More information about the Python-bugs-list mailing list