From 94f7a0ad45b8412cedbadf5653253bbe61662e47 Mon Sep 17 00:00:00 2001 From: phact Date: Fri, 19 Dec 2025 04:39:28 -0500 Subject: [PATCH] container logs if tests fail --- .github/workflows/test-integration.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.github/workflows/test-integration.yml b/.github/workflows/test-integration.yml index 76539ba0..f1f1958a 100644 --- a/.github/workflows/test-integration.yml +++ b/.github/workflows/test-integration.yml @@ -100,3 +100,12 @@ jobs: fi echo "Keys directory after tests:" ls -la keys/ || echo "No keys directory" + + - name: Dump Langflow logs on failure + if: failure() + run: | + echo "=== Langflow container logs ===" + docker logs langflow 2>&1 | tail -500 || echo "Could not get Langflow logs" + echo "" + echo "=== Backend container logs ===" + docker logs openrag-backend 2>&1 | tail -200 || echo "Could not get backend logs"