From 403df92c2d48176a5f675870e3df94a93bc6ec13 Mon Sep 17 00:00:00 2001 From: David Landa Marban Date: Mon, 17 Aug 2026 14:18:32 +0200 Subject: [PATCH] Setting headless=True in chromium --- tests/scripts/docs_check_outputs.sh | 1 + tests/scripts/get_smeaheia.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/scripts/docs_check_outputs.sh b/tests/scripts/docs_check_outputs.sh index 0d3e433..54ae113 100644 --- a/tests/scripts/docs_check_outputs.sh +++ b/tests/scripts/docs_check_outputs.sh @@ -31,6 +31,7 @@ printf '%s\n' "$files" | while IFS= read -r f; do [ -z "$f" ] && continue if [ ! -f "$f" ]; then echo "$f" >> "$missing_file" + missing=$((missing + 1)) fi done diff --git a/tests/scripts/get_smeaheia.py b/tests/scripts/get_smeaheia.py index d8f9170..b985e77 100644 --- a/tests/scripts/get_smeaheia.py +++ b/tests/scripts/get_smeaheia.py @@ -20,7 +20,7 @@ zipfile = outdir / "simulation_models.zip" with sync_playwright() as p: - browser = p.chromium.launch(headless=False) + browser = p.chromium.launch(headless=True) page = browser.new_page() page.goto(RESOURCE_URL)