Skip to content

Commit 337b989

Browse files
author
Krzysztof Dziedzic
committed
Add ITK test suite
1 parent c367c83 commit 337b989

File tree

7 files changed

+585
-0
lines changed

7 files changed

+585
-0
lines changed

.github/actions/spelling/allow.txt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,10 @@ initdb
6363
inmemory
6464
INR
6565
isready
66+
itk
67+
ITK
6668
jcs
69+
jit
6770
jku
6871
JOSE
6972
JPY
@@ -107,11 +110,13 @@ protoc
107110
pydantic
108111
pyi
109112
pypistats
113+
pyproto
110114
pyupgrade
111115
pyversions
112116
redef
113117
respx
114118
resub
119+
rmi
115120
RS256
116121
RUF
117122
SECP256R1

.github/workflows/itk.yaml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
name: ITK
2+
3+
on:
4+
push:
5+
branches: [main, 1.0-dev]
6+
pull_request:
7+
paths:
8+
- 'src/**'
9+
- 'itk/**'
10+
- 'pyproject.toml'
11+
12+
permissions:
13+
contents: read
14+
15+
jobs:
16+
itk:
17+
name: ITK
18+
runs-on: ubuntu-latest
19+
20+
steps:
21+
- name: Checkout code
22+
uses: actions/checkout@v6
23+
24+
- name: Install uv
25+
uses: astral-sh/setup-uv@v7
26+
27+
- name: Run ITK Tests
28+
run: bash run_itk.sh
29+
working-directory: itk
30+
env:
31+
A2A_SAMPLES_REVISION: itk-v0.1-alpha

.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,3 +12,8 @@ coverage.xml
1212
spec.json
1313
docker-compose.yaml
1414
.geminiignore
15+
16+
# ITK Integration Test Artifacts
17+
itk/a2a-samples/
18+
itk/pyproto/
19+
itk/instruction.proto

itk/__init__.py

Whitespace-only changes.

0 commit comments

Comments
 (0)