Test 2 skeleton: openwakeword loads via --no-deps split, scores print

This commit is contained in:
2026-06-11 14:54:45 +00:00
parent a301345ec4
commit 2cea1e8de0
5 changed files with 110 additions and 6 deletions
+4 -1
View File
@@ -35,7 +35,10 @@ sshpass -p "$PI_PASS" ssh -o StrictHostKeyChecking=accept-new \
cd '$PI_PATH'
[ -d .venv ] || python3 -m venv .venv
.venv/bin/pip install --upgrade pip -q
.venv/bin/pip install -q -r '$TEST_DIR/requirements.txt'" 2>&1 | REDACT
.venv/bin/pip install -q -r '$TEST_DIR/requirements.txt'
if [ -f '$TEST_DIR/requirements-nodeps.txt' ]; then
.venv/bin/pip install -q --no-deps -r '$TEST_DIR/requirements-nodeps.txt'
fi" 2>&1 | REDACT
echo "==> run $TEST_DIR/main.py"
sshpass -p "$PI_PASS" ssh -t -o StrictHostKeyChecking=accept-new \