From 4cfcad785537212fe08b37e2b3a76a9db11d26ec Mon Sep 17 00:00:00 2001 From: Ioannis Tziakos Date: Sat, 7 Sep 2024 13:37:30 +0100 Subject: [PATCH 1/3] Fix author email in setup.cfg --- setup.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.cfg b/setup.cfg index 55c9a26..1038348 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,7 +3,7 @@ name = pywin32-ctypes version = file: VERSION url = https://github.com/enthought/pywin32-ctypes author = Enthought Inc. -author_email = info@enthough.com +author_email = info@enthought.com description = A (partial) reimplementation of pywin32 using ctypes/cffi long_description = file: README.rst, CHANGELOG.txt license = BSD-3-Clause From e87603388e5b6395e2aa15063d558bad1c656413 Mon Sep 17 00:00:00 2001 From: Ioannis Tziakos Date: Sat, 7 Sep 2024 13:37:48 +0100 Subject: [PATCH 2/3] Set the coverage data file to not be a hidden file --- .coveragerc | 1 + 1 file changed, 1 insertion(+) diff --git a/.coveragerc b/.coveragerc index d6f042a..6711251 100644 --- a/.coveragerc +++ b/.coveragerc @@ -3,6 +3,7 @@ branch = True source = win32ctypes omit = */tests/* relative_files = True +data_file = coverage [report] # Regexes for lines to exclude from consideration From 5791374ad8d37961ac4b1d4b662b77e7326fc9a6 Mon Sep 17 00:00:00 2001 From: Ioannis Tziakos Date: Sat, 7 Sep 2024 13:40:06 +0100 Subject: [PATCH 3/3] fix coverage artifact upload --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index cb9bb33..5162c1d 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -59,7 +59,7 @@ jobs: uses: actions/upload-artifact@v4 with: name: coverage-${{matrix.python-version}} - path: .coverage.* + path: coverage.* coverage: runs-on: ubuntu-latest needs: tests