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 <rep...@bugs.python.org>
<http://bugs.python.org/issue22639>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to