Update readme to show all dependencies needed to run test_jade.py
What changed, and why it matters
This commit only updates the README.md file to add clearer instructions for installing test dependencies (virtualenv, bluez-tools, and an additional requirements file). It is purely a documentation change with no code modifications.
No security action needed. This is a documentation-only commit.
Security signals we found
No strong security signals were identified.
Evidence from the diff
The diff adds nine lines to README.md documenting that virtualenv and bluez-tools are required, how to install them on Debian-based systems, and that pinserver/requirements.txt must also be installed before running test_jade.py. No source code, build scripts, or configuration files were changed.
Changed components
README.mdInspect captured patch +9 / −0
diff --git a/README.md b/README.md
index fc63272..70f1529 100644
--- a/README.md
+++ b/README.md
@@ -129,11 +129,20 @@ Note: for any but the simplest CI-like build with no GUI, no camera, no user-int
# Run the tests
+Virtualenv and bluez-tools are required, you can install them on debian based distros with:
+
+```
+sudo apt install virtualenv bluez-tools
+```
+
+Then to run the tests:
+
```
cd $HOME/jade
virtualenv -p python3 venv3
source venv3/bin/activate
pip install -r requirements.txt
+pip install -r pinserver/requirements.txt
python test_jade.py
Why this scored 15/100
Community notes
Notes can correct, qualify, or add evidence to the AI analysis. Every note shown here has been validated by a human moderator.
The AI analysis stands alone for now. Submit a note if you can add evidence or important context.