From 05246d6469a86289b0e7f2e615220bdb62d24f43 Mon Sep 17 00:00:00 2001 From: jiangwei-infra Date: Tue, 9 Jun 2026 14:24:02 +0800 Subject: [PATCH] fix(ci): use pyproject.toml instead of missing requirements.txt --- .gitea/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index d6673ce..4491ec3 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -46,7 +46,7 @@ jobs: - name: Setup Python run: | python3 -m venv /tmp/ci-venv-test - /tmp/ci-venv-test/bin/pip install --quiet -r requirements.txt + /tmp/ci-venv-test/bin/pip install --quiet -e . - name: Run tests (exclude E2E) run: |