From 3fc0a844d66e5a287d7a726c17cd54fee218677a Mon Sep 17 00:00:00 2001 From: Arnim Rupp <46819580+ruppde@users.noreply.github.com> Date: Mon, 9 Oct 2023 12:48:55 +0200 Subject: [PATCH] Update developing.md --- docs/developing.md | 6 ++++++ 1 file changed, 6 insertions(+) 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 +```