Alessio Bogon
Alessio Bogon
Fixes #223
Command line options `--fixture-graph-output-dir` and `--fixture-graph-output-type` wouldn't allow you to actually pass custom value, since their action was to store a boolean: ``` $ pytest --fixture-graph --fixture-graph-output-type=pdf ERROR: usage: pytest...
Hi, I think it would be quite handy to have `Expression.__floordiv__` being a shortcut for `Expression.descendant`. The reasoning is that it is quite common to traverse nodes using the descendant...
Given a factory with traits, pytest_factoryboy should treat them as normal params, and allow them to be parametrized. MCVE: ```python @dataclass class Article: comments: int views: int @register class ArticleFactory(Factory):...
This is a problem affecting the extraction of string from python files. While format strings like `"Hello %(name)s"` are correctly extracted and marked with the `#, python-format` marker, strings like...
## What do these changes do? Add back the ability to join with an empty string `""`, resulting in the `/` being appended to the URL. This was broken in...
## Summary by Sourcery Add support for Python 3.13 in the CI workflow by updating the configuration to include testing for this version. CI: - Add Python 3.13 to the...
Fixes https://github.com/pytest-dev/pytest-bdd/issues/397 Checklist: - [ ] Find all usages of `keyword` and check if we need to replace them with `keyword_type`
I want to overhaul the documentation. I asked some AI to rewrite the Readme, and got half way through it. Here are also some recommendations: ``` To improve the README...
It'd be nice to be able to expose a fixture (maybe the factory fixture?) that can be invoked in the test invocation. Here's a few use cases: * creating the...