Skip to content

remove incest from HC #735

remove incest from HC

remove incest from HC #735

Workflow file for this run

name: Run Python Tests
on:
pull_request:
branches: [master]
types: [opened, synchronize, closed]
jobs:
build:
runs-on: ubuntu-latest
services:
postgres:
image: postgres:11
env:
POSTGRES_DB: hc_chemie
POSTGRES_USER: hc_chemie
POSTGRES_PASSWORD: passord
ports: ['5432:5432']
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.7
uses: actions/setup-python@v1
with:
python-version: 3.7
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements/development.txt
- name: Test with pytest
env:
# postgres://<username>:<password>@<host>/<dbname>
DATABASE_URL: 'postgres://hc_chemie:[email protected]:${{ job.services.postgres.ports[5432] }}/hc_chemie'
run: |
pytest -c chemie/pytest.ini