Skip to content

fix: monkeypatch script & update filter label #18

fix: monkeypatch script & update filter label

fix: monkeypatch script & update filter label #18

Workflow file for this run

name: django CMS Content Expiry test.yml
on: [pull_request, push]
jobs:
database-sqlite:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: [ 3.9, '3.10'] # latest release minus two
requirements-file: [
django-3_2_cms40.txt,
django-4_2_cms40.txt,
django-4_2_cms41.txt,
]
steps:
- uses: actions/checkout@v1
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
sudo apt install gettext gcc -y
python -m pip install --upgrade pip
pip install pytest
pip install -r tests/requirements/${{ matrix.requirements-file }}
python setup.py install
- name: Test with python test runner
run: |
python setup.py test
env:
DATABASE_URL: sqlite://localhost/testdb.sqlite