Skip to content

Replace the "SessionAdmin" class' readonly_fields with has_add_permission and has_change_permission #52

Replace the "SessionAdmin" class' readonly_fields with has_add_permission and has_change_permission

Replace the "SessionAdmin" class' readonly_fields with has_add_permission and has_change_permission #52

Workflow file for this run

name: tests
on: [push, pull_request, workflow_dispatch]
jobs:
pre-commit:
name: Run pre-commits
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
- uses: pre-commit/action@v3.0.0
test:
name: Test
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.11", "3.10", "3.9", "3.8"]
django-version: ["4.2", "4.1", "3.2"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install django~=${{ matrix.django-version }}.0
pip install -e ".[dev]"
- name: Run tests
run: |
py.test --cov --junitxml=pytest.xml --cov-report=term-missing:skip-covered | tee pytest-coverage.txt
- if: ${{ strategy.job-index == 0 }}
name: Pytest coverage comment
id: coverageComment
uses: MishaKav/pytest-coverage-comment@main
with:
pytest-coverage-path: ./pytest-coverage.txt
junitxml-path: ./pytest.xml
- if: ${{ strategy.job-index == 0 && github.ref == 'refs/heads/main' }}
name: Create the coverage badge
uses: schneegans/dynamic-badges-action@v1.4.0
with:
auth: ${{ secrets.CODECOVERAGE_GIST }}
gistID: 24a6d63ff9d29d9be5399169f8199ca0
filename: pytest-coverage__${{ github.ref_name }}.json
label: coverage
message: ${{ steps.coverageComment.outputs.coverage }}
color: ${{ steps.coverageComment.outputs.color }}