From 2b5bd7c5ed49bfddcfbdac67437e5304ec34c748 Mon Sep 17 00:00:00 2001 From: Fabian Joswig Date: Wed, 27 Oct 2021 09:08:37 +0100 Subject: [PATCH] CONTRIBUTING updated --- CONTRIBUTING.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index ea780c69..299e5891 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -23,8 +23,9 @@ When implementing a new feature or fixing a bug please add meaningful tests to t ### Continous integration For all pull requests tests are executed for the most recent python releases via ``` -pytest -v +pytest --cov=pyerrors -v ``` +requiring `pytest`, `pytest-cov` and `pytest-benchmark` and the linter `flake8` is executed with the command ``` flake8 --ignore=E501,E722 --exclude=__init__.py pyerrors