Skip to content

Commit 87026cd

Browse files
committed
Improve AGENTS
1 parent f852c38 commit 87026cd

File tree

1 file changed

+12
-2
lines changed

1 file changed

+12
-2
lines changed

AGENTS.md

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,18 @@ Run the full test suite with:
1717
uv run pytest
1818
```
1919

20-
You can check the tests coverage by adding the `--cov` flag from `pytest-cov` when running `pytest`.
20+
You can check the tests coverage by adding the `--cov` and `--cov-report=term-missing` (to report the missing lines in the command output) flags from `pytest-cov` when running `pytest`.
2121

2222
```bash
23-
uv run pytest --cov
23+
uv run pytest --cov --cov-report=term-missing
24+
```
25+
26+
## Before commiting
27+
28+
All files must be properly formatted before creating a PR, so we can merge it upstream.
29+
30+
You can run `ruff` for formatting automatically all the files of the project:
31+
32+
```bash
33+
uv run ruff format
2434
```

0 commit comments

Comments
 (0)