Results 963 comments of Ned Batchelder

Is there a way to reproduce this without running a Redis instance? I get a ConnectionError.

> I'm seeing it using fakeredis, which is what I use to test redis code. Any chance you can give us a way to reproduce it?

I'm missing what problem this solves? Conceptually, tests and linting are separate to me, so deserve separate workflows.

I guess I don't understand the reason for making it reusable, just to use it from one workflow? Why not embed it directly in the workflow? I must be missing...

Thanks for the issue report. It's hard for me to run Windows and I'm not sure if this is Windows-specific. You said it happens in coverage 5.5 and 6.5.0. Can...

I fixed this in your repo with this patch: ```diff diff --git a/tox.ini b/tox.ini index 5620c78..ade7c05 100644 --- a/tox.ini +++ b/tox.ini @@ -218,6 +218,7 @@ commands = [coverage:run] branch =...

I changed the line to: ``` data_file = .coverage.${TOX_ENV_NAME} ``` (dot instead of dash). Then I could combine all the files together with: ``` coverage combine --data-file=.coverage ``` I'm not...

I have no idea what that change in CPython did, or how coverage affects it. If you have any more details about why this might be happening, I'd appreciate them....