stub testing (#226)

adds github action for tests
This commit is contained in:
Markos Gogoulos
2021-06-17 23:11:14 +03:00
committed by GitHub
parent de30fe68f1
commit 26804dce40
3 changed files with 49 additions and 1 deletions

37
.github/workflows/python.yml vendored Normal file
View File

@@ -0,0 +1,37 @@
name: Python Tests
on: [push]
jobs:
build:
runs-on: ubuntu-latest
services:
postgres:
image: postgres:12
env:
POSTGRES_USER: mediacms
POSTGRES_PASSWORD: mediacms
POSTGRES_DB: mediacms
ports:
- 5432:5432
# needed because the postgres container does not provide a healthcheck
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5
steps:
- uses: actions/checkout@v1
- name: Set up Python 3.7
uses: actions/setup-python@v1
with:
python-version: 3.7
- name: psycopg2 prerequisites
run: sudo apt-get install libpq-dev
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Run migrations
run: python manage.py migrate
- name: Run tests
run: py.test