fix(generic): catch exception if .template_name is not set #3117
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
#SPDX-FileCopyrightText: 2023 Birger Schacht | |
#SPDX-License-Identifier: MIT | |
name: Django Test | |
on: | |
pull_request: | |
env: | |
DJANGO_SETTINGS_MODULE: sample_project.settings | |
jobs: | |
setup: | |
runs-on: ubuntu-latest | |
strategy: | |
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 }} | |
- name: Upgrade pip | |
run: | | |
python -m pip install --upgrade pip | |
- name: Install poetry and setuptools | |
run: | | |
pip install poetry setuptools | |
- name: Configure poetry | |
run: | | |
poetry config virtualenvs.in-project true | |
- name: Cache the virtualenv | |
uses: actions/cache@v4 | |
with: | |
path: ./.venv | |
key: ${{ runner.os }}-py-${{ matrix.python-version }}-venv-${{ hashFiles('**/poetry.lock') }} | |
- name: Install dependencies | |
run: | | |
poetry lock | |
poetry install --with tests | |
- name: Make migrations | |
run: poetry run ./manage.py makemigrations | |
- name: Migrate | |
run: poetry run ./manage.py migrate | |
- name: Test | |
run: poetry run ./manage.py test |