(case: Sample)
| 166 | |
| 167 | |
| 168 | def _mark_case(case: Sample) -> list: |
| 169 | marks = [pytest.mark.xdist_group("serial")] |
| 170 | for m in case.extra_markers: |
| 171 | marks.append(getattr(pytest.mark, m)) |
| 172 | return marks |
| 173 | |
| 174 | |
| 175 | # --------------------------------------------------------------------------- |
nothing calls this directly
no outgoing calls
no test coverage detected