Source code
Revision control
Copy as Markdown
Other Tools
import pytest
@pytest.fixture
def get_installer(request):
def _get_installer(extension):
"""Get path to the installer for the specified extension."""
stub_dir = request.node.fspath.dirpath("installer_stubs")
# We had to remove firefox.exe since it is not valid for mozinstall 1.12 and higher
return stub_dir.join("firefox.{}".format(extension)).strpath
return _get_installer