Update test.yml

This commit is contained in:
Daniel Grams 2021-01-26 15:07:23 +01:00
parent 73baf10607
commit 2485175d2c

View File

@ -38,6 +38,11 @@ jobs:
- name: Install dependencies
run: pip install -r requirements.txt
- name: Install postgis
run: psql -c 'create extension postgis;' -h postgres -U postgres -d gsevpt_tests
env:
PGPASSWORD: postgres
- name: Run tests
run: pytest --cov-report=html --cov=project tests/test___init__.py
env: