Skip to content

Bump pytest from 8.3.4 to 8.4.2 #9

Bump pytest from 8.3.4 to 8.4.2

Bump pytest from 8.3.4 to 8.4.2 #9

Workflow file for this run

name: Workflow for Codecov example-python

Check failure on line 1 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/ci.yml

Invalid workflow file

(Line: 20, Col: 9): 'name' is already defined, (Line: 18, Col: 9): There's not enough info to determine what you meant. Add one of these properties: run, shell, uses, with, working-directory
on: [push, pull_request]
jobs:
run:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python 3.10
uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Install dependencies
run: pip install -r requirements.txt
- name: Run tests and collect coverage
run: |
pytest --cov app --junitxml=junit.xml -o junit_family=legacy
- name: Upload to Sentry
if: ${{ !cancelled() }}
name: getsentry/prevent-action@v0
env:
PREVENT_TOKEN: ${{ secrets.PREVENT_TOKEN }}