We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5895a31 commit 78034a8Copy full SHA for 78034a8
2 files changed
README.md
@@ -228,10 +228,10 @@ The project uses several tools to maintain code quality:
228
Run all checks:
229
230
```powershell
231
-black --check .
232
-ruff check .
233
-mypy .
234
-pytest
+python -m ruff check .
+python -m black . --check
+python -m mypy .
+python -m pytest -m "not integration"
235
```
236
237
## CI/CD
README.ru.md
@@ -228,10 +228,10 @@ python -m pytest
Запуск всех проверок:
0 commit comments