From 9f4b070039be9961bd84ef3fed8d3d3f696efba0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Anders=20Hovm=C3=B6ller?= Date: Sat, 4 Jan 2025 08:32:23 +0100 Subject: [PATCH] Also copy setup.cfg and pyproject.toml by default --- mutmut/__main__.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/mutmut/__main__.py b/mutmut/__main__.py index f9097da6..422a44d7 100644 --- a/mutmut/__main__.py +++ b/mutmut/__main__.py @@ -1018,6 +1018,8 @@ def read_config(): Path('tests/'), Path('test/'), Path('tests.py'), + Path('setup.cfg'), + Path('pyproject.toml'), ], max_stack_depth=s('max_stack_depth', -1), debug=s('debug', False),