The reverse from skipif, see skipif for details.
(condition: bool, msg: str)
| 64 | |
| 65 | |
| 66 | def onlyif(condition: bool, msg: str) -> MarkDecorator: |
| 67 | """The reverse from skipif, see skipif for details.""" |
| 68 | |
| 69 | return skipif(not condition, msg) |
| 70 | |
| 71 | |
| 72 | # ----------------------------------------------------------------------------- |
no test coverage detected
searching dependent graphs…