mutmut
mutmut copied to clipboard
Mutation testing system
If you pass multiple paths to any of the path switches, they're not correctly parsed if the pathname contains a "/". i.e.: --paths-to-mutate app/model,app/service,app/controller I've checked the code and the...
I am working on a project that includes text normalization and using mutmut for mutation testing. mutmut is mutating line 35 to be `normalized = 'XXXX'` instead of `normalized =...
Just started with MutMut and got this error: ``` Traceback (most recent call last): File "/Users/charlieclark/temp/op/bin/mutmut", line 8, in sys.exit(climain()) File "/Users/charlieclark/temp/op/lib/python3.7/site-packages/click/core.py", line 764, in __call__ return self.main(*args, **kwargs) File...
Hi, Mutmut stops running after a while and outputs the following error: ``` Exception in thread queue_mutants: Traceback (most recent call last): File ".../python3.7/site-packages/mutmut/__init__.py", line 712, in queue_mutants mutants_queue.put(('mutant', context))...
To reproduce: 1. Clone https://gitlab.com/victor-engmark/mypy-exercises/ 2. Run mutation tests with `mutmut run src/generator/test_all.py` 3. Try to show first mutation with `mutmut show 1` Expected result: This should show the first...
I would like to have `mutmut junitxml` only report the mutants that survived, hence I want to ignore the killed mutants. So `--killed-policy=ingore` would be very handy to have. The...
As title says, I wanted to be a bit more organized, and put everything related to `mutmut` in `/tests/mutation`. I attempted to run `mutmut html`, and it says it can...
I have recently started testing the application of `mutmut` on my non-public project, and I wanted to mention that the numbers present in the html report are misplaced. As can...
mutmut performs a deep mutation testing and the output could be overwhelming. A very simple type of mutation is one that empties the entire body of a method, as described...
Commit 1ade5e5986ca69956d9cd5fecb3e71b264c73ed3 added the assumptions that if a mutant was killed regardless of the test file changing it'd still be marked as killed. Even though it might offer a performance...