-
Notifications
You must be signed in to change notification settings - Fork 1
66 lines (55 loc) · 1.89 KB
/
python-tests.yml
File metadata and controls
66 lines (55 loc) · 1.89 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
name: Python tests & coverage
permissions:
contents: write
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
persist-credentials: true
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements-dev.txt
# install your package so coverage can find it
pip install -e .
- name: Run pytest with coverage
run: |
pytest --cov=quactuary --cov-report=xml --cov-report=term
- name: Test MCP Server
run: |
pytest quactuary/tests/test_mcp/
- name: Convert coverage XML to JSON badge
run: |
python ./scripts/coverage_to_json.py coverage.xml > coverage.json
- name: Check version bump against latest Git tag
run: |
PKG_VER=$(python -c "from quactuary._version import version; print(version)")
LATEST_TAG=$(git describe --tags --abbrev=0 | sed 's/^v//')
echo "Package version: $PKG_VER"
echo "Latest Git tag: $LATEST_TAG"
if [ "$PKG_VER" = "$LATEST_TAG" ]; then
echo "::error::Package version ($PKG_VER) matches latest Git tag. Bump version before publishing."
exit 1
fi
- name: Pull remote main
run: git pull origin main
- name: Commit coverage badge JSON
uses: stefanzweifel/git-auto-commit-action@v4
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
pull: true
commit_message: "CI: update coverage badge"
file_pattern: coverage.json
branch: main