mahmoudimus / nose-timer

A timer plugin for nosetests (how much time does every test take?)
MIT License
126 stars 33 forks source link

Issue running --with-timer and --process at the same time #90

Closed zsolt-sb closed 5 years ago

zsolt-sb commented 5 years ago

Please look at plugin.py line 258

The line _results_queue.put((test.id(), time_taken, None)) Should be _results_queue.put((test.id(), time_taken, status))

The resulting bug is that timer prints [None] for the status instead of the status.

skudriashev commented 5 years ago

@zsolt-sb thanks for reporting this. Should be fixed now.

zsolt-sb commented 5 years ago

Wow, thanks for the lightning fast turnaround. Now I don't have to implement a workaround.