Skip to content

Bump black from 19.10b0 to 24.3.0 #121

Bump black from 19.10b0 to 24.3.0

Bump black from 19.10b0 to 24.3.0 #121

Workflow file for this run

name: PostgreSQL Test
on: [push]
jobs:
runner-job:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.6, 3.7, 3.8]
services:
postgres:
image: postgres
env:
POSTGRES_PASSWORD: postgres
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
ports:
- 5432:5432
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install psycopg2
pip install .
- name: Test with pytest
run: |
pytest -k postgres