From 9c82160107c2448b7df153e7871c4f8df36f4d43 Mon Sep 17 00:00:00 2001 From: David Chiu <david20571015@gmail.com> Date: Fri, 27 Oct 2023 10:40:52 -0500 Subject: [PATCH] fix: testing instruction in `CONTRIBUTING.md` (#8526) --- CONTRIBUTING.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index e216ad507a..5bf966409c 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -314,10 +314,15 @@ For bigger changes, you'll want to create a unit test. Our tests are in the `tes We use `pytest` for unit testing. To run all unit tests, run the following in the root dir: ```bash -pip install -r data_requirements.txt pytest tests ``` +or + +```bash +make test +``` + ### Creating an Example Notebook For changes that involve entirely new features, it may be worth adding an example Jupyter notebook to showcase -- GitLab