From 6e97637d4eb134b503531722d30757131d199483 Mon Sep 17 00:00:00 2001 From: MatejKastak Date: Mon, 23 Oct 2023 15:36:00 +0200 Subject: [PATCH] docs: Update the test command in developing.md --- docs/developing.md | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/docs/developing.md b/docs/developing.md index 207d3ae..f679465 100644 --- a/docs/developing.md +++ b/docs/developing.md @@ -14,11 +14,5 @@ poetry install 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 +poetry run poe test ```