From 87b21ec590001471d0d826a8dce207f9a410876d Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Sun, 22 Mar 2026 12:36:34 +0000 Subject: [PATCH] Debug CI with install output capture --- .gitea/workflows/ci.yml | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index d20d627..7776d20 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -8,12 +8,17 @@ jobs: test: runs-on: ubuntu-latest steps: - - name: Verify app directory + - name: Debug install run: | + echo "=== Directory check ===" ls -la /app - cat /app/setup.py - - name: Install dependencies - run: | - pip3 install -e /app pytest pytest-asyncio + echo "=== Python version ===" + python3 --version + pip3 --version + echo "=== Installing ===" + pip3 install -e /app 2>&1 | tail -20 + echo "=== Install exit code: $? ===" - name: Run tests - run: pytest /app/tests/ -v --tb=short \ No newline at end of file + run: | + pytest /app/tests/ -v --tb=short 2>&1 | tail -50 + echo "=== Tests exit code: $? ===" \ No newline at end of file