Skip to content

Ask user to confirm info before creating Install #1570

Ask user to confirm info before creating Install

Ask user to confirm info before creating Install #1570

name: Run Django Tests
on:
pull_request:
push:
branches: [ main ]
permissions: read-all
jobs:
run-django-tests:
runs-on: ubuntu-latest
services:
postgres:
image: docker.io/postgres:15-bookworm
env:
POSTGRES_DB: nycmesh-dev
POSTGRES_USER: nycmesh
POSTGRES_PASSWORD: abcd1234
POSTGRES_PORT: 5432
ports:
- 5432:5432
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
pelias:
image: pelias/parser:latest
ports:
- 6800:3000
redis:
image: redis
ports:
- 6379:6379
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@65d7f2d534ac1bc67fcd62888c5f4f3d2cb2b236 # v4
with:
python-version: '3.11'
- name: "Upgrade pip"
run: "pip install --upgrade pip"
- name: "Install package"
run: pip install ".[dev]"
- name: Run Django Tests
env:
DB_NAME: nycmesh-dev
DB_USER: nycmesh
DB_PASSWORD: abcd1234
DB_HOST: localhost
DB_PORT: 5432
DJANGO_SECRET_KEY: k7j&!u07c%%97s!^a_6%mh_wbzo*$hl4lj_6c2ee6dk)y9!k88
PELIAS_ADDRESS_PARSER_URL: http://localhost:6800/parser/parse
QUERY_PSK: localdev
NN_ASSIGN_PSK: localdev
PANO_GITHUB_TOKEN: ${{ secrets.PANO_GITHUB_TOKEN }}
DB_USER_RO: meshdb_ro
DB_PASSWORD_RO: readonly
run: coverage run src/manage.py test meshapi meshapi_hooks
- name: Write coverage report to disk
run: coverage html
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@e0b68c6749509c5f83f984dd99a76a1c1a231044 # v4.0.1
with:
token: ${{ secrets.CODECOV_TOKEN }}