From f324462cc31361985bd49b99ef7a027d7b70d44d Mon Sep 17 00:00:00 2001 From: Parshva Daftari <89991302+parshvadaftari@users.noreply.github.com> Date: Tue, 1 Oct 2024 00:55:48 +0530 Subject: [PATCH] Update contributing.md (#1918) --- CONTRIBUTING.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 84a569b5..b4420bc9 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -43,7 +43,11 @@ pre-commit install We use `pytest` to test our code. You can run the tests by running the following command: ```bash -poetry run pytest +poetry run pytest tests + +# or + +make test ``` Several packages have been removed from Poetry to make the package lighter. Therefore, it is recommended to run `make install_all` to install the remaining packages and ensure all tests pass. Make sure that all tests pass before submitting a pull request.