(self, pytester: Pytester)
| 911 | assert result.ret == 0 |
| 912 | |
| 913 | def test_skipif_using_platform(self, pytester: Pytester) -> None: |
| 914 | item = pytester.getitem( |
| 915 | """ |
| 916 | import pytest |
| 917 | @pytest.mark.skipif("platform.platform() == platform.platform()") |
| 918 | def test_func(): |
| 919 | pass |
| 920 | """ |
| 921 | ) |
| 922 | with pytest.raises(pytest.skip.Exception): |
| 923 | pytest_runtest_setup(item) |
| 924 | |
| 925 | @pytest.mark.parametrize( |
| 926 | "marker, msg1, msg2", |
nothing calls this directly
no test coverage detected