From 1c6f50408a4d37f82f5e994cbaa533dcbe7aef23 Mon Sep 17 00:00:00 2001 From: yanghua Date: Fri, 6 Dec 2024 15:47:10 +0800 Subject: [PATCH 1/2] docs: add the documentation about how to install packages for tests --- python/DEVELOPMENT.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/python/DEVELOPMENT.md b/python/DEVELOPMENT.md index 5202701d6ed..04f84c06867 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 ``` From b3ed2de6919dbf64bc838eeb170f49057ffe2415 Mon Sep 17 00:00:00 2001 From: yanghua Date: Fri, 6 Dec 2024 17:23:32 +0800 Subject: [PATCH 2/2] trigger ci