From f5e9d73fbcc48eabc2b2919801cace031dcea49e Mon Sep 17 00:00:00 2001 From: Topin2001 Date: Mon, 17 Jun 2024 14:40:21 +0200 Subject: [PATCH] added debug print --- .github/workflows/ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index de53165..d8fce58 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -66,11 +66,12 @@ jobs: run: | echo "Retrieving the sonarqube-catlab image..." docker pull lequal/sonarqube-catlab:latest + docker images echo "Testing the scanner image..." echo -e "Results of the CI pipeline\n" > tests_logs.txt cd tests/ python3 -m pip install -r requirements.txt - python3 -m pytest -v |& tee -a ../tests_logs.txt + python3 -m pytest -v -s |& tee -a ../tests_logs.txt # Have the job fail if at least one test failed - name: Check all tests passed run: grep -v -q "FAILED" tests_logs.txt