Skip to content

Commit 78034a8

Browse files
committed
tooling: finalize ruff integration and verify checks
1 parent 5895a31 commit 78034a8

2 files changed

Lines changed: 8 additions & 8 deletions

File tree

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -228,10 +228,10 @@ The project uses several tools to maintain code quality:
228228
Run all checks:
229229

230230
```powershell
231-
black --check .
232-
ruff check .
233-
mypy .
234-
pytest
231+
python -m ruff check .
232+
python -m black . --check
233+
python -m mypy .
234+
python -m pytest -m "not integration"
235235
```
236236

237237
## CI/CD

README.ru.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -228,10 +228,10 @@ python -m pytest
228228
Запуск всех проверок:
229229

230230
```powershell
231-
black --check .
232-
ruff check .
233-
mypy .
234-
pytest
231+
python -m ruff check .
232+
python -m black . --check
233+
python -m mypy .
234+
python -m pytest -m "not integration"
235235
```
236236

237237
## CI/CD

0 commit comments

Comments
 (0)