refactor: moved types to types.py #94
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: 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 |