diff --git a/docs/developing.md b/docs/developing.md index 0f9c102..207d3ae 100644 --- a/docs/developing.md +++ b/docs/developing.md @@ -16,3 +16,9 @@ You can run tests with the following command: ```bash poetry run pytest ``` + +Run tests including pylint and the Black code formatter like the CI workflow of the repo. Useful before PRs: + +```bash +poetry run pytest -vvv --black --pylint --pylint-rcfile=pyproject.toml --cov=yls --cov-report=term-missing -l ./yls ./tests +```