Sample configuration dictionary.
()
| 222 | |
| 223 | @pytest.fixture |
| 224 | def sample_config_dict(): |
| 225 | """Sample configuration dictionary.""" |
| 226 | return { |
| 227 | "data_root": "/data/test", |
| 228 | "output_dir": "/output/test", |
| 229 | "batch_size": 32, |
| 230 | "operators": { |
| 231 | "filter": {"type": "ConvLengthFilter", "min_length": 1}, |
| 232 | "rewriter": {"type": "RemoveThinkRewriter"}, |
| 233 | }, |
| 234 | } |
| 235 | |
| 236 | |
| 237 | # ============================================================================= |
nothing calls this directly
no outgoing calls
no test coverage detected