Skip to content

Rename base settings file #86

Rename base settings file

Rename base settings file #86

Workflow file for this run

name: WebPlayer Backend Tests
on:
push:
paths:
- 'backend/**'
pull_request:
branches:
- master
defaults:
run:
working-directory: backend
jobs:
test:
runs-on: ubuntu-latest
timeout-minutes: 5
defaults:
run:
working-directory: backend
env:
SECRET_KEY: github_actions
services:
postgres:
image: postgres:14.0
env:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
POSTGRES_DB: github_actions
ports:
- 5432:5432
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5
steps:
- name: Check out repository code
uses: actions/checkout@v2
- name: Setup Python 3.10
uses: actions/setup-python@v2
with:
python-version: "3.10"
- name: psycopg2 prerequisites
run: sudo apt-get install libpq-dev
- name: Install pipenv
run: |
python -m pip install --upgrade pipenv wheel
- id: cache-pipenv
uses: actions/cache@v1
with:
path: ~/.local/share/virtualenvs
key: ${{ runner.os }}-pipenv-${{ hashFiles('**/Pipfile.lock') }}
- name: Install dependencies
if: steps.cache-pipenv.outputs.cache-hit != 'true'
run: |
pipenv install --deploy --dev
- name: Django tests
run: |
pipenv run coverage run manage.py test
- name: Code coverage
run: |
pipenv run coverage report -m