(item)
| 117 | |
| 118 | |
| 119 | def pytest_runtest_setup(item): |
| 120 | # Apply test markers to skip tests selectively |
| 121 | for mark in item.iter_markers(): |
| 122 | item.config.pyarrow.apply_mark(mark) |
| 123 | |
| 124 | |
| 125 | @pytest.fixture |
nothing calls this directly
no test coverage detected