diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index a0e1318..3e46d12 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -21,12 +21,6 @@ jobs: pip install tox coveralls - name: Run Tox run: ./tox.sh -e py - - name: Upload Coveralls coverage - if: ${{ success() }} - run: coveralls --service=github - env: - COVERALLS_PARALLEL: true - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # do some tests with LC_ALL=C to check for locale variance c-locale-test: @@ -88,19 +82,3 @@ jobs: run: pip install tox - name: Run tox run: tox -e pep8 - - # report coverage to coveralls, but only for pytest runs -# finish-coveralls: -# needs: [ unit-tests, c-locale-test ] -# runs-on: ubuntu-latest -# -# steps: -# - uses: actions/setup-python@v2 -# with: -# python-version: 3.13 -# - name: Finish Coveralls -# run: | -# pip install coveralls -# coveralls --service=github --finish -# env: -# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}