From 3b66515a832d208a3e81118ed677049e01277403 Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Sun, 22 Mar 2026 11:59:24 +0000 Subject: [PATCH] CI with debug output - show Python version and installed packages --- .gitea/workflows/ci.yml | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index c024e7f..6ee7622 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -12,7 +12,16 @@ jobs: - uses: actions/setup-python@v5 with: python-version: '3.11' - - name: Install - run: pip install -e . && pip install pytest pytest-asyncio + - name: Install dependencies + run: | + python -m pip install --upgrade pip + pip install pytest pytest-asyncio + pip install -e . + - name: List installed packages + run: pip list - name: Run tests - run: pytest tests/ -v \ No newline at end of file + run: | + echo "Python version:" + python --version + echo "Running tests..." + pytest tests/ -v --tb=short \ No newline at end of file