From 58bf3557437f90caa727de931393fd6856e2b623 Mon Sep 17 00:00:00 2001 From: Josh Lory Date: Mon, 12 Aug 2024 02:26:02 -0500 Subject: [PATCH] Update README.md (#281) Add `coverage` dependency to dev setup instructions. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index f6dceec5..a50cb769 100644 --- a/README.md +++ b/README.md @@ -276,9 +276,9 @@ When migrating to `m2c`, note the following changes to the CLI: There is much low-hanging fruit still. Take a look at the issues if you want to help out. -We use `black` to auto-format our code and `mypy` for type checking. We recommend using `pre-commit` to ensure only auto-formatted code is committed. To set these up, run: +We use `black` to auto-format our code, `mypy` for type checking and `coverage` for unit tests. We recommend using `pre-commit` to ensure only auto-formatted code is committed. To set these up, run: ```bash -pip install pre-commit black mypy +pip install pre-commit black mypy coverage pre-commit install ```