From 90546b6c9a6f602d3fca97443992f9da98479da6 Mon Sep 17 00:00:00 2001 From: "Gan, Jimmy" Date: Thu, 4 Jun 2026 10:39:02 +0800 Subject: [PATCH] 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 --- .gitea/workflows/deploy.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/deploy.yml b/.gitea/workflows/deploy.yml index e22121e..cc434de 100644 --- a/.gitea/workflows/deploy.yml +++ b/.gitea/workflows/deploy.yml @@ -89,7 +89,7 @@ jobs: run: | cd dashboard/backend . venv/bin/activate - python -m pytest tests/ -v --timeout=60 \ + python3 -m pytest tests/ -v --timeout=60 \ --cov=. --cov-report=xml --cov-report=term \ --junit-xml=test-results.xml \ --cov-fail-under=49