From 0ea2bf6e1d0c234d571cb361cf85f0cdfb14842e Mon Sep 17 00:00:00 2001 From: zache-fi Date: Wed, 8 Apr 2026 09:41:00 +0300 Subject: [PATCH 1/2] Add test running instructions to README Added instructions for running tests in README. --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.md b/README.md index 1bea66b..290b1c5 100644 --- a/README.md +++ b/README.md @@ -62,7 +62,13 @@ To modify the code and test it locally, you'll need to install it as a pip packa ukbot --page Bruker:Danmichaelo/Sandkasse5 --simulate config/config.no-mk.yml +## Howto run tests + python3 -m venv venv + source venv/bin/activate + pip install -r requirements.txt + pip install . + python3 -m unittest discover -s test -v ## Deployment From 65f6e167ab242e3fb3bb45b5b19f3c1c55c620c9 Mon Sep 17 00:00:00 2001 From: zache-fi Date: Sun, 19 Apr 2026 05:27:24 +0300 Subject: [PATCH 2/2] Update README.md Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 290b1c5..4e465ef 100644 --- a/README.md +++ b/README.md @@ -64,8 +64,8 @@ To modify the code and test it locally, you'll need to install it as a pip packa ## Howto run tests - python3 -m venv venv - source venv/bin/activate + python3 -m venv www/python/venv + . www/python/venv/bin/activate pip install -r requirements.txt pip install . python3 -m unittest discover -s test -v