From 47631c75c2754577d7088271f122f97cb707e1f9 Mon Sep 17 00:00:00 2001 From: Robert Dailey Date: Thu, 18 Feb 2021 15:53:18 -0600 Subject: [PATCH] Update README with new packages required for dev Specifically, added `pytest-mock` requirement and a one-liner to install all the prerequisites. --- README.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/README.md b/README.md index 6b5a654f..ec13db6a 100644 --- a/README.md +++ b/README.md @@ -173,3 +173,10 @@ In addition to the above limitations, the following items are planned for the fu Some additional packages are required to run the unit tests. All can be installed via `pip`: * `pytest` +* `pytest-mock` + +To install all of the above required packages, here's a convenient copy & paste one-liner: + +```txt +pip install pytest pytest-mock +```