From f3b1b58149f9e00154d3b4d8933b6f89dba4c26a Mon Sep 17 00:00:00 2001 From: Antoine du Hamel Date: Sun, 24 Mar 2024 00:34:34 +0100 Subject: [PATCH] Update README.md Co-authored-by: Christian Clauss --- README.md | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index c562c08..0b8b1ba 100644 --- a/README.md +++ b/README.md @@ -43,6 +43,10 @@ $ black . ## Running tests locally ```sh -python3 -m pip install --editable ".[dev]" -python3 -m pytest +python3 -m venv .venv +source .venv/bin/activate +pip install --upgrade pip +pip install pytest +pip install --editable ".[dev]" +pytest ```