Jeff Wright
Jeff Wright
Would that approach also address the lack of coloring in the `=== short test summary info ===` section?
I ran into this same issue with [one of my earlier repos](https://pypi.org/project/audio-program-generator/). I'm trying to remember now if there were any ramifications. I seem to recall that part of the...
I also ran into this, and I also use a virtualenv. Perhaps the default behavior should be to not examine commonly used virtualenv directories, like `venv` or `.venv`? I'd also...
It is a venv and a single test file. ``` ~/coding/mutmut ⌚ 15:30:42 $ ls -la total 184 drwxr-xr-x 7 jwr003 542971493 224 Jun 30 15:16 . drwxr-xr-x 71 jwr003...
Here is the error I get (same as OP): ``` ~/coding/mutmut ⌚ 15:35:22 $ mutmut run --paths-to-mutate . - Mutation testing starting - These are the steps: 1. A full...
Well so it turns out that if I explicitly declare the file to run against with the `--paths-to-mutate` flag, it runs. it took a lot of experimentation to get there,...
Like this? ``` $ tree -I venv -I build -I counters.egg-info -I dist . ├── README.md ├── RELEASE_INSTRUCTIONS ├── counters │ ├── __init__.py │ ├── counters.py │ └── manual_test.py ├──...
One thing I noticed is your pytest.ini has `log_cli=True`. This option populates the output with seemingly double the test traffic. In reality, what is happening is the same test info...
Same issue for me with pytest-sugar. Here is the summary info output I get running WITHOUT pytest-sugar: ``` ================================================================================== short test summary info ================================================================================== PASSED tests/test_1.py::test_a_ok PASSED tests/test_1.py::test_g_eval_parameterized[3+5-8] PASSED tests/test_1.py::test_g_eval_parameterized[2+4-6]...
V4 FTW!! Let me know if you need help testing it.