Skip to content

Fix: allow unexpected fields in responses #235

Fix: allow unexpected fields in responses

Fix: allow unexpected fields in responses #235

Workflow file for this run

name: Pytest
on:
pull_request:
push:
branches:
- "main"
workflow_call:
jobs:
pytest:
runs-on: ubuntu-latest
permissions:
# Gives the action the necessary permissions for publishing new
# comments in pull requests.
pull-requests: write
# Gives the action the necessary permissions for pushing data to the
# python-coverage-comment-action branch, and for editing existing
# comments (to avoid publishing multiple comments in the same PR)
contents: write
strategy:
matrix:
version: ["3.10", "3.11", "3.12"]
steps:
- name: Check out code
uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.version }}
cache: pip
cache-dependency-path: "**/pyproject.toml"
- name: Install Python dependencies
run: pip install -e .[test]
- name: Run tests
run: ./bin/coverage.sh
- name: Coverage comment
uses: py-cov-action/python-coverage-comment-action@v3
if: github.event_name != 'workflow_call' && matrix.version == '3.11'
with:
GITHUB_TOKEN: ${{ github.token }}
MINIMUM_GREEN: 90
MINIMUM_ORANGE: 80