Skip to content

chore(deps): bump pytest from 7.2.1 to 9.0.3 #42

chore(deps): bump pytest from 7.2.1 to 9.0.3

chore(deps): bump pytest from 7.2.1 to 9.0.3 #42

Workflow file for this run

name: Workflow for Codecov Components Example
on: [push, pull_request]
jobs:
run:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python 3.11
uses: actions/setup-python@v2
with:
python-version: '3.10'
- name: Install dependencies
run: pip install -r requirements.txt
- name: Run tests and collect coverage for calculator
run: pytest --cov
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v5
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_ORG_TOKEN }}
with:
flags: simple
- name: Run tests and collect coverage for complex calculator
run: pytest --cov calculator.complex
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v5
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_ORG_TOKEN }}
with:
flags: complex
- name: Run tests and collect coverage for smiles
run: pytest --cov smiles
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v5
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_ORG_TOKEN }}
with:
flags: smiles