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