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: CONTRIBUTING.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -57,8 +57,8 @@ to configure how the tests are run. For example, for more logging: change the lo
57
57
```bash
58
58
sh install.sh -d
59
59
. ./activate
60
-
ruff format && ruff check --fix && mypy
61
-
pytest tests -v --durations 0
60
+
ruff format && ruff check --fix && mypy.
61
+
pytest . -v --durations 0
62
62
```
63
63
64
64
The [Mypy library](https://mypy.readthedocs.io/en/stable/) is very useful for ensuring objects are of the correct type, so try to always add the type of the return value, and the type of local variables.
0 commit comments