Some checks failed
Python CI / test (push) Successful in 1m18s
Lint / lint (push) Successful in 1m31s
Tests / test (3.11) (push) Successful in 1m25s
Tests / test (3.13) (push) Has been cancelled
Tests / test (3.14) (push) Has been cancelled
Tests / test (3.12) (push) Has been cancelled
124 lines
4.0 KiB
YAML
124 lines
4.0 KiB
YAML
name: Tests
|
|
|
|
on:
|
|
push:
|
|
branches: [main, master, develop]
|
|
paths-ignore:
|
|
- 'coverage*.svg'
|
|
- 'README.md'
|
|
pull_request:
|
|
branches: [main, master, develop]
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
python-version: ['3.11', '3.12', '3.13', '3.14']
|
|
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Set up Python ${{ matrix.python-version }}
|
|
uses: actions/setup-python@v4
|
|
with:
|
|
python-version: ${{ matrix.python-version }}
|
|
|
|
- name: Install Python dependencies
|
|
run: |
|
|
python -m pip install --upgrade pip
|
|
pip install -e ".[dev]"
|
|
pip install coverage-badge interrogate
|
|
|
|
- name: Download initial failed badges
|
|
run: |
|
|
mkdir -p cov_info
|
|
curl -o cov_info/coverage.svg "https://img.shields.io/badge/coverage-failed-red.svg"
|
|
curl -o cov_info/coverage-docs.svg "https://img.shields.io/badge/docs-failed-red.svg"
|
|
|
|
- name: Run tests with coverage
|
|
id: pytest
|
|
continue-on-error: true
|
|
run: |
|
|
xvfb-run -a pytest --cov=pyPhotoAlbum --cov-report=xml --cov-report=json --cov-report=html --cov-report=term-missing
|
|
env:
|
|
QT_QPA_PLATFORM: offscreen
|
|
|
|
- name: Check documentation coverage
|
|
id: docs
|
|
continue-on-error: true
|
|
run: |
|
|
interrogate -v --ignore-init-method --ignore-init-module --ignore-magic --ignore-private --ignore-property-decorators --ignore-semiprivate --fail-under=80 pyPhotoAlbum/
|
|
|
|
- name: Update test coverage badge on success
|
|
if: steps.pytest.outcome == 'success' && always()
|
|
run: |
|
|
if [ -f coverage.json ]; then
|
|
coverage-badge -o cov_info/coverage.svg -f
|
|
echo "✅ Test coverage badge updated"
|
|
fi
|
|
|
|
- name: Update docs coverage badge on success
|
|
if: steps.docs.outcome == 'success' && always()
|
|
run: |
|
|
rm -f cov_info/coverage-docs.svg
|
|
interrogate --generate-badge cov_info/coverage-docs.svg pyPhotoAlbum/
|
|
echo "✅ Docs coverage badge updated"
|
|
|
|
- name: Generate coverage reports
|
|
if: steps.pytest.outcome == 'success'
|
|
run: |
|
|
python -c "
|
|
import json
|
|
import os
|
|
if os.path.exists('coverage.json'):
|
|
with open('coverage.json', 'r') as f:
|
|
coverage_data = json.load(f)
|
|
total_coverage = round(coverage_data['totals']['percent_covered'], 1)
|
|
with open('cov_info/coverage-summary.txt', 'w') as f:
|
|
f.write(f'{total_coverage}%')
|
|
print(f'Test Coverage: {total_coverage}%')
|
|
"
|
|
if [ -f coverage.json ]; then cp coverage.json cov_info/; fi
|
|
if [ -f coverage.xml ]; then cp coverage.xml cov_info/; fi
|
|
if [ -d htmlcov ]; then cp -r htmlcov cov_info/; fi
|
|
|
|
- name: Final badge status
|
|
if: always()
|
|
run: |
|
|
echo "=== FINAL BADGE STATUS ==="
|
|
echo "Test outcome: ${{ steps.pytest.outcome }}"
|
|
echo "Docs outcome: ${{ steps.docs.outcome }}"
|
|
ls -la cov_info/ 2>/dev/null || echo "No cov_info directory"
|
|
|
|
- name: Upload coverage artifacts
|
|
uses: actions/upload-artifact@v3
|
|
with:
|
|
name: coverage-reports
|
|
path: cov_info/
|
|
|
|
- name: Upload coverage reports to Codecov
|
|
if: matrix.python-version == '3.11'
|
|
uses: codecov/codecov-action@v3
|
|
with:
|
|
file: ./coverage.xml
|
|
fail_ci_if_error: false
|
|
|
|
- name: Commit badges to badges branch
|
|
if: github.ref == 'refs/heads/master' && matrix.python-version == '3.11'
|
|
run: |
|
|
git config --local user.email "action@gitea.local"
|
|
git config --local user.name "Gitea Action"
|
|
|
|
git remote set-url origin https://${{ secrets.PUSH_TOKEN }}@gitea.tourolle.paris/dtourolle/pyPhotoAlbum.git
|
|
|
|
git checkout --orphan badges
|
|
|
|
find . -maxdepth 1 -not -name '.git' -not -name 'cov_info' -exec rm -rf {} + 2>/dev/null || true
|
|
|
|
git add -f cov_info/
|
|
|
|
git commit -m "Update coverage badges [skip ci]"
|
|
git push -f origin badges
|