From ff88c72caa5ac732c118c715fb3c793ca766bace Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Eren=20G=C3=B6lge?= Date: Tue, 26 Oct 2021 17:52:09 +0200 Subject: [PATCH] Update CONTRIBUTING.md Fix testing command --- CONTRIBUTING.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 89138e47..7175cf34 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -76,7 +76,8 @@ The following steps are tested on an Ubuntu system. 8. Run the tests to see how your updates work with the rest of the project. You can repeat this step multiple times as you implement your changes to make sure you are on the right direction. ```bash - $ make tests + $ make test # stop at the first error + $ make test_all # run all the tests, report all the errors ``` 9. Format your code. We use ```black``` for code and ```isort``` for ```import``` formatting.