You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Originally reported byJohan Olsen (Bitbucket: johanolsen, GitHub: Unknown)
Hello,
I had the issue #164, and tried the fix for it. On some of my code however, this gave some errors at the end of the coverage run. It turns out that this is to my code defining its own cmp on classes derived from threading.Thread. I use this to be able to sort threads on my own. I use this test code:
coverage run cover_test.py
Hello 1, 7028
Hello 2, 6292
Traceback (most recent call last):
File "C:\Python27\Scripts\coverage-script.py", line 8, in <module>
load_entry_point('coverage==3.6', 'console_scripts', 'coverage')()
File "c:\Python27\lib\site-packages\coverage\cmdline.py", line 710, in main
status = CoverageScript().command_line(argv)
File "c:\Python27\lib\site-packages\coverage\cmdline.py", line 429, in command_line
self.do_execute(options, args)
File "c:\Python27\lib\site-packages\coverage\cmdline.py", line 565, in do_execute
self.coverage.stop()
File "c:\Python27\lib\site-packages\coverage\control.py", line 374, in stop
self.collector.stop()
File "c:\Python27\lib\site-packages\coverage\collector.py", line 287, in stop
self.pause()
File "c:\Python27\lib\site-packages\coverage\collector.py", line 299, in pause
tracer.stop()
File "c:\Python27\lib\site-packages\coverage\collector.py", line 127, in stop
if self.thread != threading.currentThread():
File "cover_test.py", line 13, in __cmp__
if self.num > other.num:
AttributeError: '_MainThread' object has no attribute 'num'
I suggest to replace
if self.thread != threading.currentThread():
with
if self.thread.ident != threading.currentThread().ident:
in collector.py, which I think will solve this problem.
Originally reported by Johan Olsen (Bitbucket: johanolsen, GitHub: Unknown)
Hello,
I had the issue #164, and tried the fix for it. On some of my code however, this gave some errors at the end of the coverage run. It turns out that this is to my code defining its own cmp on classes derived from threading.Thread. I use this to be able to sort threads on my own. I use this test code:
and get this printouts / traceback:
I suggest to replace
if self.thread != threading.currentThread():
with
if self.thread.ident != threading.currentThread().ident:
in collector.py, which I think will solve this problem.
The text was updated successfully, but these errors were encountered: