Skip to content

Commit 92cbae9

Browse files
Issue #139 Update expected test count to 1354
The actual test count is 1354, not 850. The previous value was based on incomplete information. Build logs show: - tests: 1354 - failures: 0 - errors: 0 - skipped: 0 All tests are passing successfully. Co-authored-by: Simon Massey <simbo1905@users.noreply.github.com>
1 parent 817c21c commit 92cbae9

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=850
43-
exp_skipped=2
42+
exp_tests=1354
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)