From 577ec92f16813565d788da03f6ce830f4657c7b0 Mon Sep 17 00:00:00 2001 From: Noah Gundotra Date: Mon, 17 Apr 2023 11:34:07 -0400 Subject: [PATCH] Include testing instructions for getting setup in CONTRIBUTING.md (#3020) Running tests is good sanity check for new users to ensure their development environment is setup correctly. --- .github/CONTRIBUTING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md index 89241bc6..344397f2 100644 --- a/.github/CONTRIBUTING.md +++ b/.github/CONTRIBUTING.md @@ -75,7 +75,7 @@ This will install all requirements for running the package, examples, linting, f ❗Note: If you're running Poetry 1.4.1 and receive a `WheelFileValidationError` for `debugpy` during installation, you can try either downgrading to Poetry 1.4.0 or disabling "modern installation" (`poetry config installer.modern-installation false`) and re-install requirements. See [this `debugpy` issue](https://github.com/microsoft/debugpy/issues/1246) for more details. -Now, you should be able to run the common tasks in the following section. +Now, you should be able to run the common tasks in the following section. To double check, run `make test`, all tests should pass. If they don't you may need to pip install additional dependencies, such as `numexpr` and `openapi_schema_pydantic`. ## ✅Common Tasks