From c6e0e72d55b12516b6ef6a83e07b7f44400cc6d5 Mon Sep 17 00:00:00 2001 From: Ioannis Tziakos Date: Fri, 6 Sep 2024 10:53:44 +0100 Subject: [PATCH] Fix author email (#480) * Fix author email * Fix coverage artifacts upload --- .coveragerc | 1 + .github/workflows/test.yml | 2 +- setup.cfg | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.coveragerc b/.coveragerc index e4fe84b..6410a69 100644 --- a/.coveragerc +++ b/.coveragerc @@ -8,3 +8,4 @@ omit = branch = True source = okonomiyaki relative_files = True +data_file = coverage diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 12d527c..1a4d190 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -38,7 +38,7 @@ jobs: uses: actions/upload-artifact@v4 with: name: coverage-${{matrix.os}}-${{matrix.python-version}} - path: .coverage.* + path: coverage.* coverage: runs-on: ubuntu-latest needs: tests diff --git a/setup.cfg b/setup.cfg index a50aaef..a7df2ad 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,7 +3,7 @@ name = okonomiyaki version = file: VERSION url = https://github.com/enthought/okonomiyaki author = Enthought Inc. -author_email = info@enthough.com +author_email = info@enthought.com description = Self-contained library to deal with metadata in Enthought-specific egg and runtime archives long_description = file: README.rst, CHANGELOG long_description_content_type = text/x-rst