Skip to content

chore(deps): bump sentry-sdk[flask] from 2.5.0 to 2.7.0 #746

chore(deps): bump sentry-sdk[flask] from 2.5.0 to 2.7.0

chore(deps): bump sentry-sdk[flask] from 2.5.0 to 2.7.0 #746

Workflow file for this run

name: Run pytests
on:
workflow_call:
pull_request:
branches: ["*"]
jobs:
tests:
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
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version-file: .github/workflows/.python-version
- name: Install package and dependencies
run: |
python -m pip install --upgrade pip
pip install -e .[test]
- name: Load environment variables
uses: cardinalby/export-env-action@v2
with:
envFile: .env.sample
- name: Test with pytest
run: |
flask init-db
coverage run -m pytest
coverage report -m
- name: Coverage comment
uses: py-cov-action/python-coverage-comment-action@v3
with:
GITHUB_TOKEN: ${{ github.token }}
MINIMUM_GREEN: 90
MINIMUM_ORANGE: 80