Skip to content

chore(deps): bump environs from 14.6.0 to 15.0.1 #374

chore(deps): bump environs from 14.6.0 to 15.0.1

chore(deps): bump environs from 14.6.0 to 15.0.1 #374

on:
push:
branches: [master]
paths:
- "**.py"
- "pyproject.toml"
- "uv.lock"
pull_request:
types: [opened, synchronize, reopened, edited, labeled, unlabeled]
permissions:
contents: read
name: pytest-with-coverage
jobs:
uv-pytest-coverage:
name: python
runs-on: ubuntu-latest
steps:
- name: Harden the runner (Audit all outbound calls)
uses: step-security/harden-runner@5ef0c079ce82195b2a36a210272d6b661572d83e # v2.14.2
with:
egress-policy: audit
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Install uv
uses: astral-sh/setup-uv@6ee6290f1cbc4156c0bdd66691b2c144ef8df19a # v7.4.0
- name: Install the project
run: uv sync --frozen --all-groups
- name: Run pytest tests using coverage
run: MCP_SERVER_TRANSPORT=streamable-http uv run --group test coverage run -m pytest tests/
- name: Generate coverage report
run: uv run coverage report -m