Skip to content

fix: Adds missing migrations and test for missing migrations #918

fix: Adds missing migrations and test for missing migrations

fix: Adds missing migrations and test for missing migrations #918

Workflow file for this run

name: CodeCov
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: false
on:
pull_request:
jobs:
unit-tests:
name: Python ${{ matrix.python-version }}
runs-on: ubuntu-latest
strategy:
matrix:
python-version:
- '3.11'
- '3.12'
- '3.13'
steps:
- uses: actions/checkout@v5
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: pip
cache-dependency-path: 'tests/requirements/*.txt'
- name: Install dependencies
run: |
python -m pip install --upgrade pip setuptools wheel
python -m pip install --upgrade tox tox-py
- name: Run tox targets for ${{ matrix.python-version }}
run: tox --py current
- name: Upload coverage data
uses: actions/upload-artifact@v4
with:
name: coverage-data-${{ matrix.python-version }}
include-hidden-files: true
path: '${{ github.workspace }}/.coverage.*'
coverage:
name: Coverage
runs-on: ubuntu-latest
needs: unit-tests
steps:
- uses: actions/checkout@v5
- uses: actions/setup-python@v5
with:
python-version: '3.13'
- name: Install dependencies
run: python -m pip install --upgrade coverage[toml]
- name: Download data
uses: actions/download-artifact@v5
with:
path: ${{ github.workspace }}
pattern: coverage-data-*
merge-multiple: true
- name: Combine coverage
run: |
python -m coverage combine
python -m coverage html --skip-covered --skip-empty
python -m coverage report
- name: Upload HTML report
if: ${{ failure() }}
uses: actions/upload-artifact@v4
with:
name: html-report
path: htmlcov
unit-tests-dev:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
python-version: ['3.13']
requirements-file: [
'py313-djmain-cms50-default.txt',
'py313-djmain-cms50-versioning.txt',
]
os: [
ubuntu-latest,
]
steps:
- uses: actions/checkout@v5
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install -r tests/requirements/${{ matrix.requirements-file }}
python -m pip install -e .
- name: Run coverage
run: coverage run -m pytest
continue-on-error: true