From af24c3a46c296b837e1aba875cb98a82486551f4 Mon Sep 17 00:00:00 2001 From: Davorin Rusevljan Date: Tue, 12 Nov 2024 07:38:29 +0000 Subject: [PATCH] playwright coverage WIP(18) --- .github/workflows/test-playwright.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test-playwright.yaml b/.github/workflows/test-playwright.yaml index 82a20dcd..e832b775 100644 --- a/.github/workflows/test-playwright.yaml +++ b/.github/workflows/test-playwright.yaml @@ -126,7 +126,8 @@ jobs: PID="${{ steps.fastagency-start.outputs.FAST_PID}}" # Send SIGTERM to the program (graceful shutdown) echo "killing the fastagency:" $PID - kill -s SIGINT $PID + ps -ef | grep $PID + kill -s SIGTERM $PID wait_count=0 while ps -p "$PID" > /dev/null && ((wait_count < 5)); do