We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c474a53 commit f579f5aCopy full SHA for f579f5a
.github/workflows/test-coverage.yml
@@ -19,17 +19,15 @@ jobs:
19
with:
20
python-version: '3.9'
21
22
- - name: Set up virtual environment
+ - name: Set up environment
23
run: |
24
- python3 -m venv .venv
25
- source .venv/bin/activate
26
pip install --upgrade pip
+ pip install "mcp[cli]"
27
pip install -r requirements.txt
28
pip install pytest pytest-cov
29
30
- name: Run tests with coverage
31
32
33
pytest --cov=src --cov-report=xml --cov-fail-under=80
34
35
- name: Upload coverage report
0 commit comments