Adds support for sugarhero (#1441) #2043
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" |