(request)
| 31 | |
| 32 | @pytest.fixture(autouse=True) |
| 33 | def skip_distributed(request): |
| 34 | if request.node.get_closest_marker("distributed_isolated"): |
| 35 | if platform.system() in ("Windows", "Darwin"): |
| 36 | pytest.skip( |
| 37 | "skipped for distributed unsupported at platform: {}".format( |
| 38 | platform.system() |
| 39 | ) |
| 40 | ) |
| 41 | |
| 42 | |
| 43 | @pytest.fixture(autouse=True) |