Skip to content

Merge pull request #40 from clauspruefer/v1.0.1fix #21

Merge pull request #40 from clauspruefer/v1.0.1fix

Merge pull request #40 from clauspruefer/v1.0.1fix #21

Workflow file for this run

name: Run tests
on:
[push, pull_request]
jobs:
test:
name: Run tests and collect coverage
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 2
- name: Set up Python
uses: actions/setup-python@v4
- name: Install dependencies
run: pip install pytest pytest-cov pytest-pep8
- name: Build Python module
run: python3 setup.py sdist
- name: Install Python module
run: pip3 install ./dist/pgdbpool-1.0.1.tar.gz
- name: Run tests
run: pytest --cov --cov-branch --cov-report=xml