Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Comment thread
zache-fi marked this conversation as resolved.

python3 -m venv www/python/venv
. www/python/venv/bin/activate
pip install -r requirements.txt
pip install .
Copy link

Copilot AI Apr 9, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

CI config (.travis.yml) currently runs tests via "pytest -v", but README instructs using "python3 -m unittest discover". Since this repository's tests are compatible with both, consider aligning the README with the CI command (or mention both options) to reduce confusion when reproducing CI locally.

Suggested change
pip install .
pip install .
pytest -v
If you prefer the standard library test runner, the test suite is also compatible with:

Copilot uses AI. Check for mistakes.
python3 -m unittest discover -s test -v

## Deployment

Expand Down