(tmp_path, request, extra_pages, monkeypatch)
| 735 | @pytest.mark.parametrize("extra_pages", ("str", "list")) |
| 736 | @pytest.mark.skipif(sys.platform != "win32", reason="Windows only") |
| 737 | def test_example_extra_pages_win(tmp_path, request, extra_pages, monkeypatch): |
| 738 | if extra_pages == "list": |
| 739 | monkeypatch.setenv("POST_INSTALL_PAGES_LIST", "1") |
| 740 | input_path = _example_path("exe_extra_pages") |
| 741 | for installer, install_dir in create_installer(input_path, tmp_path): |
| 742 | _run_installer(input_path, installer, install_dir, request=request) |
| 743 | |
| 744 | |
| 745 | def test_example_extra_envs(tmp_path, request): |
nothing calls this directly
no test coverage detected