Skip to content

Commit 083251a

Browse files
committed
Fix CI test counts after json-java21-schema module removal
Updated expected test counts from 4436 tests/1692 skipped to 460 tests/0 skipped after removing the json-java21-schema module and adding json-java21-jtd module.
1 parent f413949 commit 083251a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,8 @@ jobs:
3939
for k in totals: totals[k]+=int(r.get(k,'0'))
4040
except Exception:
4141
pass
42-
exp_tests=4436
43-
exp_skipped=1692
42+
exp_tests=460
43+
exp_skipped=0
4444
if totals['tests']!=exp_tests or totals['skipped']!=exp_skipped:
4545
print(f"Unexpected test totals: {totals} != expected tests={exp_tests}, skipped={exp_skipped}")
4646
sys.exit(1)

0 commit comments

Comments
 (0)