Bump sentry-sdk from 0.19.5 to 1.35.0 #365
Workflow file for this run
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: Pytest | |
on: | |
- push | |
- pull_request | |
jobs: | |
pytest: | |
runs-on: ubuntu-20.04 | |
strategy: | |
matrix: | |
python-version: | |
- "3.8" | |
- "3.9" | |
- "3.10" | |
- "3.11" | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- run: pip install --upgrade setuptools | |
- run: pip install --upgrade wheel | |
- run: pip install pycodestyle | |
- run: pip install pydocstyle | |
- run: pip install pytest-cov | |
- run: pip install --upgrade importlib-metadata | |
- run: pip install -r requirements.txt | |
- run: pip install -e .[dev] || pip install -e . | |
- name: Pytest Coverage | |
run: pytest -v --cov=ccx_messaging --cov-fail-under=70 | |
- name: Coverage export | |
run: pytest -v --cov=ccx_messaging --cov-report=xml | |
- name: Upload coverage | |
uses: codecov/codecov-action@v3 | |
if: ${{ matrix.python-version == '3.8' }} | |
with: | |
token: c5c72a0d-fa95-4f38-8015-9aadbaf46466 |