From 970e7d55fe237f9f104bfcacde01ebe5460f516c Mon Sep 17 00:00:00 2001 From: vinoyang Date: Sat, 7 Dec 2024 00:15:52 +0800 Subject: [PATCH] docs: add the documentation about how to install packages for tests (#3213) --- python/DEVELOPMENT.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/python/DEVELOPMENT.md b/python/DEVELOPMENT.md index 5202701d6e..04f84c0686 100644 --- a/python/DEVELOPMENT.md +++ b/python/DEVELOPMENT.md @@ -16,6 +16,14 @@ re-building. ## Running tests +To run the tests, first install the test packages: + +```shell +pip install '.[tests]' +``` + +then: + ```shell make test ```