thread 'test_full_pipeline_pose' (...) panicked at crates/core/tests/kpm_regression.rs:164:13:
full_pipeline: pose[0][2] differs by 6.134186e-2 (actual=6.406289e-2, expected=2.721035e-3, tol=1.0e-2)
Observed difference is ~6× the configured tolerance, on a single pose element.
Summary
The integration test
test_full_pipeline_pose(incrates/core/tests/kpm_regression.rs:164) fails onwindows-latestrunners with a pose component diverging beyond the configured tolerance:Observed difference is ~6× the configured tolerance, on a single pose element.
Where this surfaced
--features dual-modeis not enabled--lib, which skips integration testsNotes
cargo teststepbuild-and-test) does NOT run this test currently — the existing workspace test job runs successfully on ubuntu, so either the test is also failing silently elsewhere or the failure is platform-specific--lib, skipping it)Reproduction
On a Windows runner / VM:
```bash
cargo test -p webarkitlib-rs --test kpm_regression
```
Suggested investigation
cargo test --workspaceon macOS / Linux x86_64 / Linux ARM64)Related