From 3381dcff93587364018ca1fd749d696b2f806082 Mon Sep 17 00:00:00 2001 From: Christina Bukas <31160776+christinab12@users.noreply.github.com> Date: Thu, 7 Dec 2023 13:18:51 +0100 Subject: [PATCH 1/3] Update test.yml --- .github/workflows/test.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index dd1a2f1..1ef04bd 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -57,6 +57,8 @@ jobs: - name: Coverage client tests uses: codecov/codecov-action@v3 + with: + files: src/client/.coverage env: CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} @@ -95,6 +97,8 @@ jobs: - name: Coverage server tests uses: codecov/codecov-action@v3 + with: + files: src/server/.coverage env: CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} From 68e9c47cd9594eeaa691f83aaf60b539d9a57f70 Mon Sep 17 00:00:00 2001 From: Christina Bukas <31160776+christinab12@users.noreply.github.com> Date: Thu, 7 Dec 2023 13:44:15 +0100 Subject: [PATCH 2/3] Update test.yml --- .github/workflows/test.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 1ef04bd..7c2c469 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -51,6 +51,7 @@ jobs: - name: Test with pytest run: | coverage run -m pytest + coverage xml working-directory: src/client env: PLATFORM: ${{ matrix.platform }} @@ -58,7 +59,7 @@ jobs: - name: Coverage client tests uses: codecov/codecov-action@v3 with: - files: src/client/.coverage + files: src/client/coverage.xml env: CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} @@ -91,6 +92,7 @@ jobs: - name: Test with pytest run: | coverage run -m pytest + coverage xml working-directory: src/server env: PLATFORM: ${{ matrix.platform }} @@ -98,7 +100,7 @@ jobs: - name: Coverage server tests uses: codecov/codecov-action@v3 with: - files: src/server/.coverage + files: src/server/coverage.xml env: CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} From 80820c1b4d953669a0aceaf67a5441c494e2f435 Mon Sep 17 00:00:00 2001 From: Christina Bukas <31160776+christinab12@users.noreply.github.com> Date: Thu, 7 Dec 2023 13:57:23 +0100 Subject: [PATCH 3/3] Update test.yml --- .github/workflows/test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 7c2c469..8d79f3d 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -51,7 +51,7 @@ jobs: - name: Test with pytest run: | coverage run -m pytest - coverage xml + coverage xml -i working-directory: src/client env: PLATFORM: ${{ matrix.platform }} @@ -92,7 +92,7 @@ jobs: - name: Test with pytest run: | coverage run -m pytest - coverage xml + coverage xml -i working-directory: src/server env: PLATFORM: ${{ matrix.platform }}