(tests: FrozenSet[str])
| 113 | |
| 114 | @lru_cache() |
| 115 | def skip_mark(tests: FrozenSet[str]) -> "MarkDecorator": |
| 116 | names = ", ".join(sorted(tests)) |
| 117 | return pytest.mark.skip(reason=f"Marked with disabled optional tests ({names})") |
| 118 | |
| 119 | |
| 120 | @lru_cache() |
no outgoing calls
no test coverage detected