Skip to content

Commit

Permalink
debug gh-actions
Browse files Browse the repository at this point in the history
  • Loading branch information
mastoffel committed Oct 30, 2024
1 parent 0297214 commit 00d4d54
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,18 @@ jobs:
- name: Run Tests with Coverage
run: |
poetry run coverage run -m pytest
poetry run coverage xml -o coverage.xml
echo "=== Python version and environment ==="
python --version
which python
echo "=== Coverage version ==="
poetry run coverage --version
echo "=== Running tests with coverage ==="
poetry run coverage run -m pytest -v
echo "=== Coverage debug info ==="
poetry run coverage debug
echo "=== Attempting to generate XML ==="
poetry run coverage combine --debug || true
poetry run coverage xml -o coverage.xml --debug
env:
COVERAGE_FILE: ".coverage.${{ matrix.python-version }}"

Expand Down

0 comments on commit 00d4d54

Please sign in to comment.