(parent: "IPDoctestModule")
| 476 | |
| 477 | |
| 478 | def get_optionflags(parent: "IPDoctestModule") -> int: |
| 479 | optionflags_str = parent.config.getini("ipdoctest_optionflags") |
| 480 | flag_lookup_table = _get_flag_lookup() |
| 481 | flag_acc = 0 |
| 482 | for flag in optionflags_str: |
| 483 | flag_acc |= flag_lookup_table[flag] |
| 484 | return flag_acc |
| 485 | |
| 486 | |
| 487 | def _get_continue_on_failure(config: Config) -> bool: |
no test coverage detected
searching dependent graphs…