(tmp_path, request)
| 870 | |
| 871 | |
| 872 | def test_example_noconda(tmp_path, request): |
| 873 | input_path = _example_path("noconda") |
| 874 | for installer, install_dir in create_installer( |
| 875 | input_path, tmp_path, config_filename="constructor_input.yaml", with_spaces=True |
| 876 | ): |
| 877 | _run_installer( |
| 878 | input_path, |
| 879 | installer, |
| 880 | install_dir, |
| 881 | config_filename="constructor_input.yaml", |
| 882 | request=request, |
| 883 | ) |
| 884 | |
| 885 | |
| 886 | @pytest.mark.skipif(sys.platform != "darwin", reason="macOS only") |
nothing calls this directly
no test coverage detected