pytest
pytest copied to clipboard
The pytest framework makes it easy to write small tests, yet scales to support complex functional testing
**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...
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...
```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 ... ========================...