(config: Config)
| 399 | |
| 400 | |
| 401 | def get_optionflags(config: Config) -> int: |
| 402 | optionflags_str = config.getini("doctest_optionflags") |
| 403 | flag_lookup_table = _get_flag_lookup() |
| 404 | flag_acc = 0 |
| 405 | for flag in optionflags_str: |
| 406 | flag_acc |= flag_lookup_table[flag] |
| 407 | return flag_acc |
| 408 | |
| 409 | |
| 410 | def _get_continue_on_failure(config: Config) -> bool: |
no test coverage detected