Skip to content

Bump sentry-sdk from 1.32.0 to 2.8.0 #1417

Bump sentry-sdk from 1.32.0 to 2.8.0

Bump sentry-sdk from 1.32.0 to 2.8.0 #1417

Workflow file for this run

name: Unit tests
on: [push]
env:
APP_STATE: "testing"
TEST_DB_STRING: "sqlite://"
SECRET_KEY: "randomsecretkey"
FLASK_APP: "kucharka"
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.9
uses: actions/setup-python@v2
with:
python-version: 3.9
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install poetry
poetry install
- name: Test with pytest
run: |
poetry run pytest -c pyproject.toml -m "not integration"