(case: Example)
| 178 | |
| 179 | |
| 180 | def _mark_example(case: Example) -> list: |
| 181 | marks = [pytest.mark.xdist_group("serial")] |
| 182 | for m in case.extra_markers: |
| 183 | marks.append(getattr(pytest.mark, m)) |
| 184 | return marks |
| 185 | |
| 186 | |
| 187 | # --------------------------------------------------------------------------- |
nothing calls this directly
no outgoing calls
no test coverage detected