From 4886197a03bb576d8f45d6189e1839c0fa9a1499 Mon Sep 17 00:00:00 2001 From: Fabian Joswig Date: Fri, 2 Jun 2023 15:49:42 +0100 Subject: [PATCH] docs: changes to pytest workflow documented in CONTRIBUTING.md --- CONTRIBUTING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index bfe66228..86267ae2 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -21,7 +21,7 @@ Please add docstrings to any new function, class or method you implement. The do When implementing a new feature or fixing a bug please add meaningful tests to the files in the `tests` directory which cover the new code. For all pull requests tests are executed for the most recent python releases via ``` -pytest +pytest -vv -Werror pytest --nbmake examples/*.ipynb ``` requiring `pytest`, `pytest-cov`, `pytest-benchmark`, `hypothesis` and `nbmake`. To install the test dependencies one can run `pip install pyerrors[test]`