diff --git a/lighthouse/runner.py b/lighthouse/runner.py index 53a37c0..6b6c0a5 100644 --- a/lighthouse/runner.py +++ b/lighthouse/runner.py @@ -116,12 +116,13 @@ def _run(self, url:str, form_factor:str='mobile', quiet:bool=True, 'lighthouse', url, '--quiet' if quiet else '', - '--chrome-flags="--headless --no-sandbox"', + '--chrome-flags="--headless --no-sandbox --disable-dev-shm-usage"', '--preset=perf', '--emulated-form-factor={0}'.format(form_factor), '--output=json', '--output=html', '--output-path={0}'.format(self.report_path), + '--no-enable-error-reporting', ] # Run the Lighthouse CLI command