Skip to content

Bump syrupy from 5.0.0 to 5.1.0 #516

Bump syrupy from 5.0.0 to 5.1.0

Bump syrupy from 5.0.0 to 5.1.0 #516

Workflow file for this run

name: Unit tests
on: [ push, pull_request ]
jobs:
unit_tests:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ["3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v6
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install -r requirements_test.txt
- name: Test with pytest
run: pytest -v --cov-config=pyproject.toml --cov=bring_api --cov-report=xml
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v5
with:
fail_ci_if_error: true
token: ${{ secrets.CODECOV_TOKEN }}
verbose: true