From 109b5772fbda3924b1fbb2d7395be29ac039a080 Mon Sep 17 00:00:00 2001 From: "Dr.-Ing. Amilcar do Carmo Lucas" Date: Fri, 26 Apr 2024 18:21:29 +0200 Subject: [PATCH] BUGFIX: fix the generation of the coverage xml report --- .github/workflows/coverage.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml index 5c9b071..7580a77 100644 --- a/.github/workflows/coverage.yml +++ b/.github/workflows/coverage.yml @@ -30,7 +30,10 @@ jobs: - name: Test with unittest run: | coverage run -m pytest - # coverage xml unittests/coverage.xml + coverage xml -o unittests/coverage.xml + + - name: List unittests directory contents + run: ls -la unittests/ - name: Get Cover uses: andraghetti/coverage@v3.2