Skip to content

fix(apis_entities,apis_relations): drop login_url override #937

fix(apis_entities,apis_relations): drop login_url override

fix(apis_entities,apis_relations): drop login_url override #937

Workflow file for this run

#SPDX-FileCopyrightText: 2023 Birger Schacht
#SPDX-License-Identifier: MIT
name: Django Test
on: [push, pull_request]
env:
DJANGO_SETTINGS_MODULE: apis.settings.settings_test_ci
jobs:
setup:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.11"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install poetry
poetry config virtualenvs.create false
poetry lock
poetry install
- name: Make migrations
run: ./manage.py makemigrations
- name: Migrate
run: ./manage.py migrate
- name: Test
run: ./manage.py test