diff --git a/.github/workflows/develop.yml b/.github/workflows/develop.yml index 9b57217..c9c415e 100644 --- a/.github/workflows/develop.yml +++ b/.github/workflows/develop.yml @@ -29,10 +29,4 @@ jobs: pip install . - name: Test with pytest run: | - pytest -v --cov-report= --cov=hatch_semver tests/ - coverage-finish: - needs: test - runs-on: ubuntu-latest - name: Finish coverage - steps: - - run: echo Test was OK + pytest -v --cov-report lcov:./coverage/lcov.info --cov=./hatch_semver diff --git a/src/hatch_semver/__about__.py b/src/hatch_semver/__about__.py index 1fb709f..043a1c8 100644 --- a/src/hatch_semver/__about__.py +++ b/src/hatch_semver/__about__.py @@ -7,5 +7,5 @@ __author_email__ = "sven.siegmund@gmail.com" __maintainer__ = __author__ __maintainer_email__ = __author_email__ -__release_date__ = date(year=2022, month=11, day=18) +__release_date__ = date(year=2022, month=11, day=21) __version__ = "1.0.1"