(
models: str, params: w.api.Params, audio_file: NDArray[np.float32]
)
| 58 | "models", [path.__fspath__() for path in ROOT_TEST.joinpath("models").glob("*.bin")] |
| 59 | ) |
| 60 | def test_from_buffer( |
| 61 | models: str, params: w.api.Params, audio_file: NDArray[np.float32] |
| 62 | ): |
| 63 | with open(models, "rb") as f: |
| 64 | context = w.api.Context.from_buffer(f.read()) |
| 65 | assert not context.full(params, audio_file) |
nothing calls this directly
no test coverage detected