(file_params, simple_params)
| 111 | |
| 112 | @pytest.fixture(scope="module") |
| 113 | def mixed_params(file_params, simple_params) -> dict[str, Any]: |
| 114 | both = file_params.copy() |
| 115 | both.update(simple_params) |
| 116 | return both |
| 117 | |
| 118 | |
| 119 | @pytest.fixture(scope="module") |