Mike Nerone
Mike Nerone
Not sure this is doable under pyenv's plugin structure, but it would be helpful to have an option along the lines of `--skip-default-packages` added to `pyenv virtualenv`. 90% of the...
When using the `@retry` decorator on a function/method, the name of the function is applied to all created retry states, which gets passed to all callbacks, and allows functions like...
Currently, other than explicitly passing a project's version to towncrier (config file or command line), the only _implicit_ way it can determine that version is via the common practice of...
- [x] I am on the [latest](https://github.com/python-poetry/poetry/releases/latest) Poetry version. - [x] I have searched the [issues](https://github.com/python-poetry/poetry/issues) of this repo and believe that this is not a duplicate. - [x] If...
This is as much an offer as it is a request. I recently began using `pdm`. I usually configure `mypy` as a `pre-commit` hook, and the annoyance I wanted to...
Async fixtures can't be used in `@pytest.mark.usefixtures(...)` decorators. I'm sure this is a side-effect of the trio-fixture workaround approach [explained in the docs](https://pytest-trio.readthedocs.io/en/stable/reference.html#trio-fixtures), but it should be possible to examine...
Async fixtures defined with `autouse` aren't automatically used. E.g. ``` @pytest.fixture(autouse=True): async def clear_some_db_table(): ... ``` I'm sure this is a side-effect of the trio-fixture workaround approach [explained in the...
Per [deprecations listed in What's New In Python 3.12](https://docs.python.org/3/whatsnew/3.12.html#deprecated), `asyncio.AbstractChildWatcher` is deprecated. `TrioChildWatcher` in `trio-asyncio` inherits it, leading to warnings with Python 3.12. This is demonstrated in any 3.12 environment:...
### Dupe Check - [X] I have [searched Warp feature requests](https://github.com/warpdotdev/warp/issues?q=is%3Aissue+label%3A%22Feature+requests%22) and there are no duplicates ### Describe the solution you'd like? The secret redaction feature should support PCRE-style expressions...
It would be very useful, particularly for `assert_not_logged()`, to be able to have an assertion match a message regardless of log level. Essentially exposing a public interface to create a...