Skip to content

Fixed test to check options are applied correctly. #84

Fixed test to check options are applied correctly.

Fixed test to check options are applied correctly. #84

Workflow file for this run

name: Tests
on: [push, pull_request]
jobs:
runtests_nocelery:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.7', '3.12']
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
pip install -r requirements.txt
- name: Run tests
run: |
python runtests.py
runtests_withcelery:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.7', '3.12']
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
pip install -r requirements.txt
pip install celery
- name: Run tests
run: |
python runtests.py
runtests_withwagtail:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.7', '3.12']
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
pip install -r requirements.txt
pip install wagtail
- name: Run tests
run: |
python runtests.py