You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: AGENTS.md
+12-2Lines changed: 12 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -17,8 +17,18 @@ Run the full test suite with:
17
17
uv run pytest
18
18
```
19
19
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`.
21
21
22
22
```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:
0 commit comments