Nir Gilboa
Nir Gilboa
Still here :) Sorry switched into a new role at work Promise promise promise to complete it soon
hey, I'm the original author of #106 :) I'm planning to pick it up, rebase and complete it
Ran into this, adding my solution: ```py import sys RUNNING_WITH_DEBUGGER = True if sys.gettrace() is not None else False NOSE_ARGS = [ '--with-xunit', '--xunit-file=nosetests.xml', ] if not RUNNING_WITH_DEBUGGER: NOSE_ARGS.extend([ '--cover-erase',...