Skip to content

Add coverage-focused tests for event pipelines #5

Add coverage-focused tests for event pipelines

Add coverage-focused tests for event pipelines #5

Workflow file for this run

name: CI
on:
push:
branches: [ main ]
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.10'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirement.txt
pip install pytest
- name: Run pytest
run: pytest
- name: Ensure coverage threshold
run: python tools/run_trace_coverage.py --min 80