-
Notifications
You must be signed in to change notification settings - Fork 102
58 lines (49 loc) · 1.64 KB
/
python-test-push.yml
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
name: Python Automated Testing
on: [push]
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v4
with:
version: latest
enable-cache: true
cache-dependency-glob: "pyproject.toml"
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install the project
run: |
uv venv
source .venv/bin/activate
uv pip install pytest pytest-cov coverage
uv sync --all-extras --dev
- name: Run tests
run: |
source .venv/bin/activate
python -m pytest --cov=chonkie --cov-branch --cov-report=xml --cov-report=term-missing --junitxml=junit.xml
- name: Upload coverage report to Codecov
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}
slug: chonkie-ai/chonkie
# Only upload coverage from the latest Python version
fail_ci_if_error: false
verbose: true
override_commit: ${{ github.sha }}
flags: python-${{ matrix.python-version }}
- name: Upload test results to Codecov
if: ${{ !cancelled() }}
uses: codecov/test-results-action@v1
with:
token: ${{ secrets.CODECOV_TOKEN }}
flags: python-${{ matrix.python-version }}
fail_ci_if_error: false
verbose: true