try localhost w/ burnettk

This commit is contained in:
jasquat 2022-05-06 14:14:25 -04:00
parent a2388d517e
commit bcfc116c70

View File

@ -9,7 +9,7 @@ env:
IMAGE_NAME: ${{ github.repository }}
TESTING: true
PB_ENABLED: false
SQLALCHEMY_DATABASE_URI: "postgresql://postgres:postgres@postgres:5432/crc_test"
SQLALCHEMY_DATABASE_URI: "postgresql://postgres:postgres@localhost:5432/crc_test"
PGPASSWORD: postgres
jobs:
@ -31,7 +31,7 @@ jobs:
python-version: '3.9'
architecture: 'x64'
- run: psql -h postgres -c 'create database crc_test;' -U postgres
- run: psql -h localhost -c 'create database crc_test;' -U postgres
- run: pipenv install --dev
- run: pipenv run coverage run -m pytest
- run: pipenv run coverage xml -i