(request)
| 66 | |
| 67 | @pytest.fixture(scope="session", params=product(models, dtypes)) |
| 68 | def model_and_tokenizer(request): |
| 69 | model, tokenizer = get_model_and_tokenizer(request.param) |
| 70 | yield request.param, model, tokenizer |
| 71 | del model |
| 72 | |
| 73 | |
| 74 | @pytest.mark.parametrize("DQ", TRUE_FALSE, ids=id_formatter("dq")) |
nothing calls this directly
no test coverage detected