pytest icon indicating copy to clipboard operation
pytest copied to clipboard

The pytest framework makes it easy to write small tests, yet scales to support complex functional testing

Results 573 pytest issues
Sort by recently updated
recently updated
newest added

**Checklist:** - [x] a detailed description of the bug or problem you are having - [x] output of `pip list` from the virtual environment you are using - [x] pytest...

topic: fixtures

Hi, thanks for making pytest! I'm trying out a monorepo setup which has a `pyproject.toml` file at the root level and one per sub-project in the monorepo. Ideally, I'd like...

type: proposal
topic: config

```py def get_data(last): return [1, 2, last] def test_list_compare(): assert [1, 2, 3] == get_data(2) def test_int_compare(): assert 1 == get_data(2) ``` ``` > uv run pytest tests ... ========================...

type: enhancement
topic: rewrite