Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add --disable-dev-shm-usage to chrome flags #8

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion lighthouse/runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down