Skip to content

Adds support for sugarhero (#1441) #2043

Adds support for sugarhero (#1441)

Adds support for sugarhero (#1441) #2043

Workflow file for this run

name: coverage
on:
push:
branches: [ main, v14 ]
pull_request:
branches: [ main, v14 ]
types: [ opened, synchronize, reopened ]
jobs:
coverage:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.12"
cache: pip
- name: Install test packages
run: pip install ".[tests]"
- name: Run tests with coverage
env:
PYTHONWARNINGS: "always:::recipe_scrapers,ignore:::recipe_scrapers.plugins.static_values"
run: coverage run -m unittest
- name: Report coverage to coveralls.io
uses: coverallsapp/github-action@v2
with:
github-token: "SmlfzlVJy4ow55rduU7IU5GmmFCfAdGeq"