Skip to content

Make WikiArticlePicture a CRUDMixin (#171) #152

Make WikiArticlePicture a CRUDMixin (#171)

Make WikiArticlePicture a CRUDMixin (#171) #152

Workflow file for this run

name: Test
on:
push:
branches: [ "master" ]
pull_request:
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: pip
cache-dependency-path: pyproject.toml
- name: Install dependencies
run: |
pip install -e .[test]
- name: Run tests with coverage
run: |
coverage run -m pytest -v
timeout-minutes: 5
#- name: Display coverage
# run: |
# coverage report