fix github ci

This commit is contained in:
Son 2021-08-15 21:49:56 +02:00
parent 800e866663
commit be418029bd
1 changed files with 3 additions and 2 deletions

View File

@ -25,11 +25,11 @@ jobs:
# required
POSTGRES_PASSWORD: test
# optional (defaults to `5432`)
POSTGRES_PORT: 15432
POSTGRES_PORT: 5432
# optional (defaults to `postgres`)
POSTGRES_USER: test
ports:
- 15432:15432
- 15432:5432
# set health checks to wait until postgres has started
options: >-
--health-cmd pg_isready
@ -63,6 +63,7 @@ jobs:
poetry run black --check .
flake8
- name: Test with pytest
run: |
pytest --cov=. --cov-report=term:skip-covered --cov-report=html:htmlcov --cov-fail-under=60