From bacde3f1a09b15963a224799201172bb9dc69632 Mon Sep 17 00:00:00 2001 From: Sven Siegmund Date: Fri, 18 Nov 2022 18:46:56 +0100 Subject: [PATCH 1/6] testing coverage --- .github/workflows/develop.yml | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/.github/workflows/develop.yml b/.github/workflows/develop.yml index 9b57217..4ed5105 100644 --- a/.github/workflows/develop.yml +++ b/.github/workflows/develop.yml @@ -29,10 +29,14 @@ jobs: pip install . - name: Test with pytest run: | - pytest -v --cov-report= --cov=hatch_semver tests/ + pytest -v --cov-report lcovd:cov.info --cov=./hatch_semver coverage-finish: needs: test runs-on: ubuntu-latest - name: Finish coverage steps: - - run: echo Test was OK + - name: Finish coverage + uses: coverallsapp/github-action@v1.1.3 + with: + github-token: ${{ secrets.github_token }} + parallel-finished: true + From ec2006718101808f31d29c4e6567543e4c7ddf13 Mon Sep 17 00:00:00 2001 From: Sven Siegmund Date: Fri, 18 Nov 2022 18:48:59 +0100 Subject: [PATCH 2/6] cli fix --- .github/workflows/develop.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/develop.yml b/.github/workflows/develop.yml index 4ed5105..59d0c4f 100644 --- a/.github/workflows/develop.yml +++ b/.github/workflows/develop.yml @@ -29,7 +29,7 @@ jobs: pip install . - name: Test with pytest run: | - pytest -v --cov-report lcovd:cov.info --cov=./hatch_semver + pytest -v --cov-report lcov:cov.info --cov=./hatch_semver coverage-finish: needs: test runs-on: ubuntu-latest From 1c39b42835678172a13f71c0f242cf00c36e3408 Mon Sep 17 00:00:00 2001 From: Sven Siegmund Date: Fri, 18 Nov 2022 18:50:26 +0100 Subject: [PATCH 3/6] 1.1.3 --- .github/workflows/develop.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/develop.yml b/.github/workflows/develop.yml index 59d0c4f..77ab1ed 100644 --- a/.github/workflows/develop.yml +++ b/.github/workflows/develop.yml @@ -35,7 +35,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Finish coverage - uses: coverallsapp/github-action@v1.1.3 + uses: coverallsapp/github-action@1.1.3 with: github-token: ${{ secrets.github_token }} parallel-finished: true From 129cfc002a94cd6415c9162be553628029b811ae Mon Sep 17 00:00:00 2001 From: Sven Siegmund Date: Fri, 18 Nov 2022 18:55:01 +0100 Subject: [PATCH 4/6] path to lcov --- .github/workflows/develop.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/develop.yml b/.github/workflows/develop.yml index 77ab1ed..d656271 100644 --- a/.github/workflows/develop.yml +++ b/.github/workflows/develop.yml @@ -39,4 +39,5 @@ jobs: with: github-token: ${{ secrets.github_token }} parallel-finished: true + path-to-lcov: cov.info From 22f4b8e82cd4e7ae1f13b4d22fca81115c234511 Mon Sep 17 00:00:00 2001 From: Sven Siegmund Date: Mon, 21 Nov 2022 15:35:45 +0100 Subject: [PATCH 5/6] removed old coverage --- .github/workflows/develop.yml | 13 +------------ 1 file changed, 1 insertion(+), 12 deletions(-) diff --git a/.github/workflows/develop.yml b/.github/workflows/develop.yml index d656271..c9c415e 100644 --- a/.github/workflows/develop.yml +++ b/.github/workflows/develop.yml @@ -29,15 +29,4 @@ jobs: pip install . - name: Test with pytest run: | - pytest -v --cov-report lcov:cov.info --cov=./hatch_semver - coverage-finish: - needs: test - runs-on: ubuntu-latest - steps: - - name: Finish coverage - uses: coverallsapp/github-action@1.1.3 - with: - github-token: ${{ secrets.github_token }} - parallel-finished: true - path-to-lcov: cov.info - + pytest -v --cov-report lcov:./coverage/lcov.info --cov=./hatch_semver From 4f841c3874ef7904d85cf33458a1a9ad2717ffb9 Mon Sep 17 00:00:00 2001 From: Sven Siegmund Date: Mon, 21 Nov 2022 15:36:29 +0100 Subject: [PATCH 6/6] updated date --- src/hatch_semver/__about__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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"