(pipeline, error_glob, kwargs=None)
| 330 | |
| 331 | |
| 332 | def _test_validation(pipeline, error_glob, kwargs=None): |
| 333 | with assert_raises(RuntimeError, glob=error_glob): |
| 334 | pipe = pipeline(batch_size=4, num_threads=4, device_id=0, **(kwargs or {})) |
| 335 | pipe.run() |
| 336 | |
| 337 | |
| 338 | @has_operator("decoders.inflate") |
nothing calls this directly
no test coverage detected