Use python3 not python in pytest command

VPS host has python3 (not python) available. Fixes "python: command
not found" error from previous commit.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
Gan, Jimmy
2026-06-04 10:39:02 +08:00
parent 3f0bcd2b7f
commit 90546b6c9a
+1 -1
View File
@@ -89,7 +89,7 @@ jobs:
run: | run: |
cd dashboard/backend cd dashboard/backend
. venv/bin/activate . venv/bin/activate
python -m pytest tests/ -v --timeout=60 \ python3 -m pytest tests/ -v --timeout=60 \
--cov=. --cov-report=xml --cov-report=term \ --cov=. --cov-report=xml --cov-report=term \
--junit-xml=test-results.xml \ --junit-xml=test-results.xml \
--cov-fail-under=49 --cov-fail-under=49