Track initial page across views by adding to adapter kwargs #210
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: test_wagtail_fedit_wagtail_61 | |
on: [pull_request, push] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python ${{ matrix.python }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python }} | |
cache: 'pip' | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install -e . | |
- name: Install Wagtail 6.1 | |
run: | |
pip install wagtail==6.1 | |
- name: Migrate database | |
run: | | |
python wagtail_fedit/test/manage.py makemigrations | |
- name: Run tests | |
run: | | |
python wagtail_fedit/test/manage.py test | |
- name: Run tests in parallel | |
run: | | |
python wagtail_fedit/test/manage.py test --parallel auto |