Ned Batchelder
Ned Batchelder
@james-garner-canonical I guess I've never seen `@staticmethod` or `@classmethod` test methods before. Where do you use them? While I have you, would you be able to influence Canonical to provide...
In a 3.13t virtualenv this is an editable install (correct tag): ``` % pip install -e . Obtaining file:///Users/ned/coverage/trunk Installing build dependencies ... done Checking if build backend supports build_editable...
@gaborbernat Can we re-open this issue while working through it? On line 275 of my gist is: ``` find interpreter for spec PythonSpec(implementation=cpython, major=3, minor=13) ``` That seems to be...
I think I've worked around this now by using `use_develop = False`.
I like the Google guidance. Capitalizing it all the time seems pedantic and distracting. English is full of eponyms that are not capitalized.
I made a pull request for adding a link to the python.org search page: https://github.com/python/pythondotorg/pull/2718 It suggests redoing the search at docs.python.org, with a link pre-populated with the search query.
BTW, I get the same issue with https://github.com/nedbat/templite. With Python 3.10, install pytest and mutmut, then: ``` % python -V Python 3.10.15 % pip install pytest mutmut % pip install...
Thanks, and templite itself seems good: ``` % mutmut run ⠼ Generating mutants done in 1ms ⠋ Listing all tests Found 26 new tests, rerunning stats collection ⠙ Running stats...
A low-tech way to do this is to skip GitHub Action steps based on branch name patterns. The PR author can name the branch to skip the tests when they...
Try adding this in coverage/parser.py, after the imports: ``` from coverage.misc import isolate_module os = isolate_module(os) ```