From d7d6364b5a4ec1c444b43f353a69315fca175c08 Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Sun, 22 Mar 2026 12:35:32 +0000 Subject: [PATCH] Final CI workflow with correct /app path --- .gitea/workflows/ci.yml | 21 +++++++-------------- 1 file changed, 7 insertions(+), 14 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 3beb116..d20d627 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -8,19 +8,12 @@ jobs: test: runs-on: ubuntu-latest steps: - - name: Show directory + - name: Verify app directory run: | - echo "=== Current directory ===" - pwd - ls -la - echo "=== Root directory ===" - ls -la / - - name: Find setup.py + ls -la /app + cat /app/setup.py + - name: Install dependencies run: | - find / -name "setup.py" 2>/dev/null | head -5 - cat /app/setup.py 2>/dev/null || echo "No /app/setup.py" - - name: Install Python dependencies - run: | - python3 --version - pip3 --version - pip3 install -e /app 2>&1 || echo "Install failed with code $?" \ No newline at end of file + pip3 install -e /app pytest pytest-asyncio + - name: Run tests + run: pytest /app/tests/ -v --tb=short \ No newline at end of file