From c35b6b716c78e31f503142b08f71bb2cc1cf6e22 Mon Sep 17 00:00:00 2001 From: Russell Keith-Magee Date: Mon, 3 Oct 2022 07:53:27 +0800 Subject: [PATCH] Add debug for coverage merging. --- .github/workflows/ci.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index fe535d21c..efea021d8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -82,6 +82,11 @@ jobs: name: coverage-data path: ".coverage.*" if-no-files-found: ignore + - name: Report smoke coverage + run: | + ls .coverage.* + python -m coverage combine + python -m coverage report python-versions: name: Python compatibility test @@ -113,6 +118,11 @@ jobs: name: coverage-data path: ".coverage.*" if-no-files-found: ignore + - name: Report version coverage + run: | + ls .coverage.* + python -m coverage combine + python -m coverage report platform-compat: name: Platform compatibility test @@ -144,6 +154,11 @@ jobs: name: coverage-data path: ".coverage.*" if-no-files-found: ignore + - name: Report platform coverage + run: | + ls .coverage.* + python -m coverage combine + python -m coverage report coverage: name: Combine & check coverage.