Skip to content

Commit 97b6e95

Browse files
committed
CI: Update partdiff_tester and use new filter syntax
1 parent a46a8af commit 97b6e95

5 files changed

Lines changed: 11 additions & 14 deletions

File tree

.github/workflows/test_cython.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
run: uv python install
2222

2323
- name: Run correctness check
24-
uses: parcio/partdiff_tester@v0.1.9
24+
uses: parcio/partdiff_tester@v0.1.10
2525
with:
2626
executable: "uv run main.py"
2727
cwd: "./cython"

.github/workflows/test_np_vectorize.yaml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,11 @@ jobs:
2121
run: uv python install
2222

2323
- name: Run correctness check
24-
uses: parcio/partdiff_tester@v0.1.9
24+
uses: parcio/partdiff_tester@v0.1.10
2525
with:
2626
executable: "uv run main.py"
2727
cwd: "./np_vectorize"
2828
strictness: "4"
2929
shuffle: "42"
30-
filter: '[
31-
"r:(\w+ 1 0 \w+ \w+ \w+)|(\w+ 2 \w+ \w+ \w+ \w+)"
32-
]'
30+
filter: |
31+
r:(\w+ 1 0 \w+ \w+ \w+)|(\w+ 2 \w+ \w+ \w+ \w+)

.github/workflows/test_nuitka.yaml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,12 +30,11 @@ jobs:
3030
nuitka --output-filename=partdiff main.py
3131
3232
- name: Run correctness check
33-
uses: parcio/partdiff_tester@v0.1.9
33+
uses: parcio/partdiff_tester@v0.1.10
3434
with:
3535
executable: "uv run main.py"
3636
cwd: "./nuitka"
3737
strictness: "4"
3838
shuffle: "42"
39-
filter: '[
40-
"o:{\"lines\": \"0\"}"
41-
]'
39+
filter: |
40+
o:{"lines": "0"}

.github/workflows/test_numba.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
run: uv python install
2222

2323
- name: Run correctness check
24-
uses: parcio/partdiff_tester@v0.1.9
24+
uses: parcio/partdiff_tester@v0.1.10
2525
with:
2626
executable: "uv run main.py"
2727
cwd: "./cython"

.github/workflows/test_simple.yaml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,11 @@ jobs:
2222

2323

2424
- name: Run correctness check
25-
uses: parcio/partdiff_tester@v0.1.9
25+
uses: parcio/partdiff_tester@v0.1.10
2626
with:
2727
executable: "uv run main.py"
2828
cwd: "./nuitka"
2929
strictness: "4"
3030
shuffle: "42"
31-
filter: '[
32-
"o:{\"lines\": \"0\"}"
33-
]'
31+
filter: |
32+
o:{"lines": "0"}

0 commit comments

Comments
 (0)