Anders Hovmöller

Results 534 comments of Anders Hovmöller

...or "checked"

How does this improve on the existing report?

I've thought about doing `mutmut show all` but it's only really useful if you have a very small number of mutants. > I've noticed that it is still not using...

Well ok then.. I'll add a warning though that the way mutmut produces diffs is super slow, so if you have lots of mutants it might not be very fun...

Just tried this on a project at work, the trivial implementation took 46 seconds for 181 mutants. I'd be nice to optimize that at some point :P

Added `mutmut show all path/to/file.py` because I wanted it :)

Can't you handle this already with https://mypy.readthedocs.io/en/stable/common_issues.html#import-cycles ?

Hm.. well, I don't think moving the class to another module will help much, as you'd still trigger the import in `__init__.py` to get to a submodule right? You'd have...

A mutant In mutmut is a single mutation point and a single possible mutant. One could imagine having multiple mutants for one mutation point (e.g. changing literal 0 to 1...