This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author Victor van den Elzen
Recipients Victor van den Elzen
Date 2015-10-05.16:43:44
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1444063424.79.0.244583020203.issue25320@psf.upfronthosting.co.za>
In-reply-to
Content
Hi, when trying to run tests after upgrading from Python 3.4 to Python 3.5 I encountered the following exception:

Traceback (most recent call last):
  ...
  File "/usr/lib/python3.5/unittest/loader.py", line 341, in discover
    tests = list(self._find_tests(start_dir, pattern))
  File "/usr/lib/python3.5/unittest/loader.py", line 398, in _find_tests
    full_path, pattern, namespace)
TypeError: 'NoneType' object is not iterable

This was caused by a stray socket in my code directory, and the fact that _find_test_path only considers directories and regular files.

I attached a suggested fix that just skips all special files. No tests other than "it works on my machine".
History
Date User Action Args
2015-10-05 16:43:44Victor van den Elzensetrecipients: + Victor van den Elzen
2015-10-05 16:43:44Victor van den Elzensetmessageid: <1444063424.79.0.244583020203.issue25320@psf.upfronthosting.co.za>
2015-10-05 16:43:44Victor van den Elzenlinkissue25320 messages
2015-10-05 16:43:44Victor van den Elzencreate