A GPU-family target: the ``gpu`` selection marker plus an env skip.
(has_fn, reason)
| 281 | |
| 282 | |
| 283 | def _gpu_mark_and_skip(has_fn, reason): |
| 284 | """A GPU-family target: the ``gpu`` selection marker plus an env skip.""" |
| 285 | return [pytest.mark.gpu, pytest.mark.skipif(not has_fn(), reason=reason)] |
| 286 | |
| 287 | |
| 288 | def _skip_only(has_fn, reason): |
no outgoing calls
no test coverage detected
searching dependent graphs…