Results 130 issues of Ned Batchelder

Based on questions people asked when I announced scriv, these things need explaining: - "Do you have a demo of how fragment categories are selected?"

documentation

The JSON API includes the `requires_python` metadata for each package. If that were included, more packages would be marked as ready for 3.10 (for example). As one data point, pip...

I have a pytest failure, it shows me a stack like this: ``` openedx_webhooks/tasks/github.py:61: in pull_request_changed current = current_support_state(pr) openedx_webhooks/tasks/pr_tracking.py:160: in current_support_state current.jira_id = current.jira_mentioned_id = get_jira_issue_key(pr) openedx_webhooks/info.py:214: in get_jira_issue_key...

This seems to get the first line of the stack trace, but I don't get any split windows. I'm not sure what I'm missing.

### What files would you like to change? I can see that @4 brought improvements in speed and reliability, that's great. But it also broke a number of common patterns...

documentation
v4

One of my test files (https://github.com/nedbat/coveragepy/blob/coverage-5.4/tests/test_testing.py) was converted into invalid code. I don't know what it is about that file that caused it, though it is a bit twisty: it's...

Currently, unittest2pytest converts this: ``` self.assertEqual(thing, None) ``` to: ``` assert thing == None ``` which pylint then complains about (as it should). Arguably, the original line was wrong, but...

If I mark a test as xfail (expected to fail), then flaky shouldn't re-run the test when it fails. Additionally, xfail tests are counted twice, while regular failing tests are...

Building the manylinux wheels for coverage.py took 1hour 45minutes. Once I removed all my .tox directories, it took 3 minutes. The problem is that "pip wheel" copies the entire tree...

https://github.com/tox-dev/tox-gh/pull/63 added a summary for each job, but if only one tox environment is run, the summaries simply duplicate information that is already available: Can we have a way to...

help wanted