(params)
| 133 | |
| 134 | @mark.parametrize("params", [{"text_score": 0.5}, {"Global": 0.5}, {"Unknown.key": 1}]) |
| 135 | def test_invalid_init_parameters(params): |
| 136 | cfg = ParseParams.load(config_path) |
| 137 | |
| 138 | with pytest.raises(ValueError): |
| 139 | ParseParams.update_batch(cfg, params) |
| 140 | |
| 141 | |
| 142 | def test_nested_init_parameters(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…