-
Notifications
You must be signed in to change notification settings - Fork 13.6k
92 lines (78 loc) · 2.73 KB
/
Copy pathtests.yml
File metadata and controls
92 lines (78 loc) · 2.73 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
name: tests
on: [pull_request]
permissions:
contents: read
env:
# Preserve Unicode in captured CLI output on Windows.
PYTHONUTF8: "1"
PIP_CONSTRAINT: ${{ github.workspace }}/.github/constraints.txt
UV_CONSTRAINT: ${{ github.workspace }}/.github/constraints.txt
jobs:
tests:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
python-version: ["3.10", "3.11", "3.12", "3.13"]
include:
- os: windows-latest
python-version: "3.12"
- os: windows-11-vs2026-arm
python-version: "3.12"
steps:
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
- uses: actions/setup-python@5fda3b95a4ea91299a34e894583c3862153e4b97 # v7.0.0
with:
python-version: ${{ matrix.python-version }}
- name: Install Hatch
run: pipx install hatch
- name: Run tests
working-directory: packages/markitdown
run: hatch test --python "${{ matrix.python-version }}"
ocr-tests:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
python-version: ["3.10", "3.11", "3.12", "3.13"]
include:
- os: windows-latest
python-version: "3.12"
- os: windows-11-vs2026-arm
python-version: "3.12"
steps:
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
- uses: actions/setup-python@5fda3b95a4ea91299a34e894583c3862153e4b97 # v7.0.0
with:
python-version: ${{ matrix.python-version }}
# Install markitdown from the local checkout rather than PyPI, so the
# plugin is tested against the sibling package it ships alongside.
- name: Install packages
run: pip install ./packages/markitdown ./packages/markitdown-ocr pytest
- name: Run tests
working-directory: packages/markitdown-ocr
run: pytest
mcp-tests:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
python-version: ["3.10", "3.11", "3.12", "3.13"]
include:
- os: windows-latest
python-version: "3.12"
- os: windows-11-vs2026-arm
python-version: "3.12"
steps:
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
- uses: actions/setup-python@5fda3b95a4ea91299a34e894583c3862153e4b97 # v7.0.0
with:
python-version: ${{ matrix.python-version }}
- name: Install packages
run: pip install "./packages/markitdown[all]" ./packages/markitdown-mcp pytest
- name: Run tests
working-directory: packages/markitdown-mcp
run: pytest