def _get_qml_import_path_with_mock(self): """Return the QML2_IMPORT_PATH value with the mock path prepended.""" qml_import_path = [get_mocks_library_path()] if os.getenv('QML2_IMPORT_PATH') is not None: qml_import_path.append(os.getenv('QML2_IMPORT_PATH')) qml_import_path = ':'.join(qml_import_path) return qml_import_path
def get_qml_import_path_with_mock(): """Return the QML2_IMPORT_PATH value with the mock path prepended.""" qml_import_path = [get_mocks_library_path()] if os.getenv('QML2_IMPORT_PATH') is not None: qml_import_path.append(os.getenv('QML2_IMPORT_PATH')) qml_import_path = ':'.join(qml_import_path) logger.info("New QML2 import path: %s", qml_import_path) return qml_import_path
def _get_lightdm_mock_path(self): lib_path = get_mocks_library_path() lightdm_mock_path = os.path.abspath( os.path.join(lib_path, "liblightdm")) if not os.path.exists(lightdm_mock_path): raise RuntimeError("LightDM mock does not exist at path '%s'." % (lightdm_mock_path)) return lightdm_mock_path
def _get_lightdm_mock_path(self): lib_path = get_mocks_library_path() lightdm_mock_path = os.path.abspath( os.path.join(lib_path, "IntegratedLightDM", "liblightdm") ) if not os.path.exists(lightdm_mock_path): raise RuntimeError( "LightDM mock does not exist at path '%s'." % (lightdm_mock_path) ) return lightdm_mock_path
def _get_lightdm_mock_path(self): lib_path = get_mocks_library_path() lightdm_mock_path = os.path.abspath( os.path.join(lib_path, "liblightdm") ) if not os.path.exists(lightdm_mock_path): raise RuntimeError( "LightDM mock does not exist at path {}.". format(lightdm_mock_path) ) return lightdm_mock_path