We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9cba485 commit b7a81a9Copy full SHA for b7a81a9
mutmut/__main__.py
@@ -432,7 +432,7 @@ def __init__(self):
432
# noinspection PyMethodMayBeStatic
433
def execute_pytest(self, params: list[str], **kwargs):
434
import pytest
435
- params = ['--rootdir=.'] + params + self._pytest_add_cli_args
+ params = ['--rootdir=.', '--tb=native'] + params + self._pytest_add_cli_args
436
if mutmut.config.debug:
437
params = ['-vv'] + params
438
print('python -m pytest ', ' '.join([f'"{param}"' for param in params]))
0 commit comments