From c107ffa84f46c1fc5150d494eb1f974cadb20f53 Mon Sep 17 00:00:00 2001 From: Timothy Flynn Date: Sat, 30 Nov 2024 08:59:59 -0500 Subject: [PATCH] CI: Enable verbose logging of LibWeb tests We currently have some tests that hang. In order to find which tests these are, let's enable verbose logging to get a log of each running test and its individual duration. --- UI/Headless/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/UI/Headless/CMakeLists.txt b/UI/Headless/CMakeLists.txt index 888598a03dd..e6440036c67 100644 --- a/UI/Headless/CMakeLists.txt +++ b/UI/Headless/CMakeLists.txt @@ -16,6 +16,6 @@ if (BUILD_TESTING) find_package(Python3 REQUIRED) add_test( NAME LibWeb - COMMAND $ --run-tests ${LADYBIRD_SOURCE_DIR}/Tests/LibWeb --python-executable ${Python3_EXECUTABLE} --dump-failed-ref-tests --per-test-timeout 120 + COMMAND $ --run-tests ${LADYBIRD_SOURCE_DIR}/Tests/LibWeb --python-executable ${Python3_EXECUTABLE} --dump-failed-ref-tests --per-test-timeout 120 --verbose ) endif()