From d0bb63241fb2d195eda3898f05a6a5040a821f54 Mon Sep 17 00:00:00 2001 From: Angeline Burrell Date: Fri, 1 Dec 2023 18:40:08 -0500 Subject: [PATCH 1/2] BUG: Update pysat_rc.yml Remove unneeded if statement for installation of dependencies. --- .github/workflows/pysat_rc.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/pysat_rc.yml b/.github/workflows/pysat_rc.yml index baf6edd..8006d42 100644 --- a/.github/workflows/pysat_rc.yml +++ b/.github/workflows/pysat_rc.yml @@ -34,7 +34,6 @@ jobs: run: pip install --no-deps --pre -i https://test.pypi.org/simple/ --extra-index-url https://pypi.org/simple/ pysat - name: Install standard dependencies and package - if: ${{ matrix.test_config == 'latest'}} run: pip install .[test] - name: Set up pysat From d4b97f517355c68f03ca680a6ab9cf48d175c277 Mon Sep 17 00:00:00 2001 From: Angeline Burrell Date: Fri, 1 Dec 2023 18:51:05 -0500 Subject: [PATCH 2/2] MAINT: updated coveralls Updated coveralls call in the pysat RC CI yaml template. --- .github/workflows/pysat_rc.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/.github/workflows/pysat_rc.yml b/.github/workflows/pysat_rc.yml index 8006d42..14f3709 100644 --- a/.github/workflows/pysat_rc.yml +++ b/.github/workflows/pysat_rc.yml @@ -47,4 +47,17 @@ jobs: - name: Publish results to coveralls env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + COVERALLS_PARALLEL: true run: coveralls --rcfile=pyproject.toml --service=github + + finish: + name: Finish Coverage Analysis + needs: build + runs-on: ubuntu-latest + steps: + - name: Coveralls Finished + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + run: | + pip install --upgrade coveralls + coveralls --service=github --finish