From c041b0e7ec4287dc0b3a7b383495039692291c4b Mon Sep 17 00:00:00 2001 From: "Gan, Jimmy" Date: Thu, 4 Jun 2026 20:23:57 +0800 Subject: [PATCH] fix(ci): use python3 instead of python - VPS Ubuntu 24.04 has no python symlink --- .gitea/workflows/deploy-dev.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/deploy-dev.yml b/.gitea/workflows/deploy-dev.yml index a81cf70..0682aa2 100644 --- a/.gitea/workflows/deploy-dev.yml +++ b/.gitea/workflows/deploy-dev.yml @@ -88,7 +88,7 @@ jobs: run: | cd dashboard/backend . venv/bin/activate - python -m pytest tests/ -v --timeout=60 + python3 -m pytest tests/ -v --timeout=60 if [ $? -ne 0 ]; then echo "❌ Backend tests failed!" exit 1