Skip to content

Bump coverage from 7.5.1 to 7.5.4 #125

Bump coverage from 7.5.1 to 7.5.4

Bump coverage from 7.5.1 to 7.5.4 #125

Workflow file for this run

name: Django CI
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
max-parallel: 4
matrix:
python-version: ["3.11", "3.12"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install Dependencies
run: |
python -m pip install --upgrade pip wheel
pip install -r requirements-test.txt -e .
- name: Start PostgreSQL
run: |
sudo systemctl start postgresql.service
pg_isready
- name: Set up PostgreSQL
run: |
sudo -u postgres psql --command="CREATE USER dbconntest WITH CREATEDB LOGIN PASSWORD 'dbconntest'" --command="\du"
sudo -u postgres createdb -O dbconntest -p 5432 dbconntest
- name: Run Tests
run: |
coverage run --source=django_dbconn_retry test_project/manage.py test
coverage report -m
coverage lcov
- name: Run Coveralls
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
path-to-lcov: coverage.lcov
parallel: true
- name: Run Flake8
run:
flake8 --max-line-length=120 django_dbconn_retry setup.py
finish:
needs: build
if: ${{ always() }}
runs-on: ubuntu-latest
steps:
- name: Close parallel build
uses: coverallsapp/github-action@master
with:
parallel-finished: true