Anders Hovmöller
Anders Hovmöller
Looks much better! Three surviving mutants seems much more reasonable :P I'd like to suggest you not print mutants that are killed and add a newline between tests, so you...
Hmm.. super insert seems like a strange mutation. Has this found bugs in code? I can see it on constructors, but mostly it seems to just calculate some data and...
Maybe you can explain this reported mutant: ``` - [# 23] IHD tri.struct._pystruct:37 : -------------------------------------------------------------------------------- 33: 34: return '%s(%s)' % (type(self).__name__, \ 35: ', '.join(pieces)) 36: ~37: pass 38: 39:...
@hroncok you might want to check out mutmut, my mutation tester. It supports all test runners because it only requires a process exit code to communicate with runners. The Python...
@sobolevn @hroncok mutmut now supports python 3 and 2 fully. I've also made some big improvements to the usability and documentation. Check it out!
Are you sure this is the mutation that fails? Is that what you get with `mutmut show 0`? "position 35" in the error would be the column 35, not the...
Weird. You could add a `print(repr(line))` in the mutmut code.
What do you want the html report for? Personally I have always thought the report is totally useless so with or without your suggestion it'd still be useless to me...
I strongly recommend you use the mutmut commands instead. Much faster.
`mutmut status` to get the list of mutants. You can also do `mutmut status ` to get mutant ids for a specific file. Then `mutmut show ` to show a...