From ae955db267bf6bbe4a89e4fdc63565e44c73484f Mon Sep 17 00:00:00 2001 From: David Buchanan Date: Thu, 9 Jan 2025 14:18:12 +0000 Subject: [PATCH] document test running --- README.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/README.md b/README.md index eb97cd0..16fe4b7 100644 --- a/README.md +++ b/README.md @@ -29,3 +29,11 @@ podman run --rm -it -p 8123:8123 millipds_dev ### Production deployment on Ubuntu (and similar systems) [WIP] See [./docs/DEPLOY.md](./docs/DEPLOY.md) + + +### Running the tests locally + +```sh +python3 -m pip install -e .[test] # install the testing dependencies (only needed once, unless new deps are added) +python3 -m pytest . # run the tests +```