Skip to content

refactor: moved types to types.py #94

refactor: moved types to types.py

refactor: moved types to types.py #94

Workflow file for this run

name: Tests
on:
push:
workflow_dispatch:
jobs:
test:
timeout-minutes: 20
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.12'
- name: Dependencies
run: |
python -m pip install poetry
poetry config virtualenvs.in-project true
pip install psycopg[binary]
pip install tblib # to see tracebacks in logs
poetry install
- name: Make files
run: |
make metropolis/local_rsa_privkey.pem
make metropolis/local_settings.py
- name: Migrations
run: .venv/bin/python -Wa manage.py migrate
- name: Django Tests
run: .venv/bin/python -Wa manage.py test --parallel