Skip to content

Bump MishaKav/pytest-coverage-comment from 1.1.57 to 1.1.59 #152

Bump MishaKav/pytest-coverage-comment from 1.1.57 to 1.1.59

Bump MishaKav/pytest-coverage-comment from 1.1.57 to 1.1.59 #152

Workflow file for this run

---
name: Pytest
on:
push:
branches:
- "master"
- "main"
pull_request:
branches:
- "master"
- "main"
workflow_dispatch:
jobs:
tests:
name: Tests
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.x"]
steps:
- name: Check out repository code
uses: actions/checkout@v5
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- name: Install Poetry
run: |
python -m pip install --upgrade poetry wheel
- name: Install dependencies
run: |
poetry install --no-cache
- name: Run tests with coverage
run: |
poetry run pytest --cov-report=term-missing:skip-covered --cov=flowpipe tests/