(item)
| 32 | |
| 33 | # Add 'skip_in_parallel' skip |
| 34 | def pytest_runtest_setup(item): |
| 35 | marker = item.get_closest_marker("skip_in_parallel") |
| 36 | if marker and MPI.COMM_WORLD.size > 1: |
| 37 | pytest.skip("This test should be run in serial only.") |
| 38 | marker = item.get_closest_marker("xfail_win32_complex") |
| 39 | if marker and sys.platform.startswith("win32"): |
| 40 | pytest.xfail("missing _Complex") |
| 41 | |
| 42 | |
| 43 | @pytest.fixture(scope="module") |
nothing calls this directly
no outgoing calls
no test coverage detected