mutmut 2.x. had --paths-to-mutate argument support:
|
if paths_to_mutate is None: |
|
paths_to_mutate = guess_paths_to_mutate() |
whereas it was removed in mutmut 3.x:
|
def walk_all_files(): |
|
paths = [guess_paths_to_mutate()] |
but README still mentions it:
|
.. code-block:: ini |
|
|
|
[mutmut] |
|
paths_to_mutate=src/ |
|
tests_dir=tests/ |
and the error message in
guess_paths_to_mutate() as well:
|
raise FileNotFoundError( |
|
'Could not figure out where the code to mutate is. ' |
|
'Please specify it on the command line using --paths-to-mutate, ' |
|
'or by adding "paths_to_mutate=code_dir" in setup.cfg to the [mutmut] section.') |
is the argument going to be reintroduced?
mutmut 2.x. had
--paths-to-mutateargument support:mutmut/mutmut/__main__.py
Lines 317 to 318 in bdd8c37
whereas it was removed in mutmut 3.x:
mutmut/mutmut/__main__.py
Lines 150 to 151 in e8e0960
but README still mentions it:
mutmut/README.rst
Lines 55 to 59 in e8e0960
and the error message in
guess_paths_to_mutate()as well:mutmut/mutmut/__main__.py
Lines 128 to 131 in e8e0960
is the argument going to be reintroduced?