Skip to content

chore(deps): bump opentelemetry-api from 1.41.1 to 1.42.1 #44

chore(deps): bump opentelemetry-api from 1.41.1 to 1.42.1

chore(deps): bump opentelemetry-api from 1.41.1 to 1.42.1 #44

Workflow file for this run

name: tests
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
pytest:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Set up Python 3.12
uses: actions/setup-python@v6
with:
python-version: "3.12"
cache: pip
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install pytest pytest-cov
- name: Run tests with coverage
run: |
pytest tests/ \
--cov=. \
--cov-report=term-missing \
--cov-report=xml \
--cov-report=html \
-v
- name: Upload coverage HTML report
if: always()
uses: actions/upload-artifact@v7
with:
name: coverage-html
path: htmlcov/
retention-days: 30
- name: Upload coverage XML
if: always()
uses: actions/upload-artifact@v7
with:
name: coverage-xml
path: coverage.xml
retention-days: 30