add update step for playwright system deps

pull/1020/head
Jeroen Gui 2024-12-19 09:53:07 +01:00
parent df433ddede
commit 3f10d1530e
1 changed files with 4 additions and 0 deletions

View File

@ -93,6 +93,10 @@ def main() -> None:
print('* Install or make sure the playwright browsers are installed.')
keep_going(args.yes)
run_command('poetry run playwright install')
print('* Install the necessary system dependendencies for playwright')
keep_going(args.yes)
run_command('poetry run playwright install-deps')
print('* Validate configuration files.')
keep_going(args.yes)