From f0230504f234d7d2201ea4ea7cf76141b830d473 Mon Sep 17 00:00:00 2001 From: Fabian Braun Date: Fri, 5 Apr 2024 13:52:04 +0200 Subject: [PATCH 1/5] Update converage action --- .github/workflows/codecov.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/codecov.yml b/.github/workflows/codecov.yml index 7a7cced..eb342c5 100644 --- a/.github/workflows/codecov.yml +++ b/.github/workflows/codecov.yml @@ -38,7 +38,7 @@ jobs: - name: Generate Report run: | pip install -r tests/requirements/${{ matrix.requirements-file }} - coverage run setup.py test + coverage run run_tests - name: Upload Coverage to Codecov uses: codecov/codecov-action@v3 From f341ea7b1c962e0923fd0e7afb46a4f07be600b7 Mon Sep 17 00:00:00 2001 From: Fabian Braun Date: Fri, 5 Apr 2024 13:54:23 +0200 Subject: [PATCH 2/5] no message --- .github/workflows/codecov.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/codecov.yml b/.github/workflows/codecov.yml index eb342c5..dc1580c 100644 --- a/.github/workflows/codecov.yml +++ b/.github/workflows/codecov.yml @@ -38,7 +38,7 @@ jobs: - name: Generate Report run: | pip install -r tests/requirements/${{ matrix.requirements-file }} - coverage run run_tests + coverage run ./run_tests.py - name: Upload Coverage to Codecov uses: codecov/codecov-action@v3 From 75537a6c9efaa8deff735737d60497b44274897e Mon Sep 17 00:00:00 2001 From: Fabian Braun Date: Fri, 5 Apr 2024 13:56:02 +0200 Subject: [PATCH 3/5] no message --- .github/workflows/codecov.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/codecov.yml b/.github/workflows/codecov.yml index dc1580c..13bc1c2 100644 --- a/.github/workflows/codecov.yml +++ b/.github/workflows/codecov.yml @@ -38,6 +38,7 @@ jobs: - name: Generate Report run: | pip install -r tests/requirements/${{ matrix.requirements-file }} + pip install -e . coverage run ./run_tests.py - name: Upload Coverage to Codecov uses: codecov/codecov-action@v3 From 55f46d533c12d79fd382d0ff28597d0f826b8b2f Mon Sep 17 00:00:00 2001 From: Fabian Braun Date: Sun, 7 Apr 2024 08:40:23 +0200 Subject: [PATCH 4/5] test: pypi publish workflow --- .github/workflows/publish-to-test-pypi.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/publish-to-test-pypi.yml b/.github/workflows/publish-to-test-pypi.yml index 1543ecb..254d64b 100644 --- a/.github/workflows/publish-to-test-pypi.yml +++ b/.github/workflows/publish-to-test-pypi.yml @@ -38,3 +38,4 @@ jobs: password: ${{ secrets.TEST_PYPI_API_TOKEN }} repository_url: https://test.pypi.org/legacy/ skip_existing: true + verbose: true From f3fbe7f7e23f1ec57367263e594c83ff1e2a4084 Mon Sep 17 00:00:00 2001 From: Fabian Braun Date: Sun, 7 Apr 2024 08:42:22 +0200 Subject: [PATCH 5/5] no message --- .github/workflows/publish-to-test-pypi.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/publish-to-test-pypi.yml b/.github/workflows/publish-to-test-pypi.yml index 254d64b..3dbbf7d 100644 --- a/.github/workflows/publish-to-test-pypi.yml +++ b/.github/workflows/publish-to-test-pypi.yml @@ -4,6 +4,9 @@ on: push: branches: - main + workflow_dispatch: + branches: + - main jobs: build-n-publish: