diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3972f62a..8ac31038 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -160,15 +160,15 @@ jobs: if: always() && (! (matrix.skip-pyside6)) run: ./.github/workflows/test.sh pyside6 - name: Upload coverage data to coveralls.io - shell: bash -e {0} - env: - COVERALLS_PARALLEL: true - COVERALLS_FLAG_NAME: ${{ matrix.os }} Python ${{ matrix.python-version }} conda=${{ matrix.use-conda }} - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - run: | - cd temp_test_dir # Switch to test working dir per non-src-layout hack - cat qtpy_basedir.txt - pipx run coveralls --service=github --rcfile="../.coveragerc" --basedir="../qtpy" + uses: coverallsapp/github-action@v2 + with: + parallel: true + flag-name: ${{ matrix.os }} Python ${{ matrix.python-version }} conda=${{ matrix.use-conda }} + github-token: ${{ secrets.GITHUB_TOKEN }} + - name: Upload coverage to Codecov + uses: codecov/codecov-action@v3 + with: + verbose: true finish: needs: test if: ${{ always() }}