Skip to content

Remove parallel testing #2

Remove parallel testing

Remove parallel testing #2

Workflow file for this run

name: Code coverage
on: [push, workflow_dispatch]
jobs:
run:
runs-on: ubuntu-latest
env:
OS: ubuntu-latest
PYTHON: '3.11'
steps:
- uses: actions/checkout@v4
- name: Install uv and set the python version
uses: astral-sh/setup-uv@v5
with:
python-version: '3.13'
- name: Install the project
run: uv sync --locked --all-extras --dev
- name: Generate coverage report
run: uv run pytest --cov=fractured_json --cov-report=xml
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
directory: ./coverage/reports/
env_vars: OS,PYTHON
fail_ci_if_error: true
files: ./coverage.xml
flags: unittests
name: codecov-umbrella
verbose: true