From 4653d519e3649b89fed0a675abef7c6ac889bb72 Mon Sep 17 00:00:00 2001 From: Brendan <2bndy5@gmail.com> Date: Mon, 9 Sep 2024 01:11:09 -0700 Subject: [PATCH] Update python-test.yml This fixes the test CI workflow. Apparently, hidden files (like `.coverage*`) are excluded from artifact uploads now. This reverts that behavior using the `actions/upload-artifact`'s new input `include-hidden-files`. --- .github/workflows/python-test.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/python-test.yml b/.github/workflows/python-test.yml index 282f97b..e214520 100644 --- a/.github/workflows/python-test.yml +++ b/.github/workflows/python-test.yml @@ -46,6 +46,7 @@ jobs: with: name: coverage-data-${{ runner.os }} path: .coverage* + include-hidden-files: true coverage-report: needs: [test]