From d701cb7efce3da537238d70e948dc674faa657f4 Mon Sep 17 00:00:00 2001 From: Michael Hucka Date: Fri, 28 Feb 2025 10:11:53 -0800 Subject: [PATCH] Fix errors in CONTRIBUTING.md Fix errors about the development processes that were made in the recent changes to `CONTRIBUTING.md` in PR #216. --- CONTRIBUTING.md | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 360d188..3588d3c 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -73,12 +73,11 @@ Do your work and `git commit` your changes to your branch as needed. We use several tools to test code and perform other activities such as checking formatting against the style guidelines. You can run those tools locally during -development. Wrapper scripts are located in the [`check/`](./check/) -subdirectory to simplify running the tools. +development. Wrapper scripts are located in the [`dev_tools/`](./dev_tools/) +subdirectory to simplify running the tools with the correct configurations. -* Run `check/pytest` to run the Pytest suite -* Run `check/mypy` to run the Mypy type checker -* Run `check/pylint` to run the Pylint code linter +* Run `dev_tools/pylint` to run the Pylint code linter +* Run `dev_tools/nbfmt` to run the Jupyter Notebook format checker ### Pull requests and code reviews