removed coveralls from tests.yml
Some checks failed
Tox Tests / unit-tests (ubuntu-latest, 3.13) (push) Failing after 5m39s
Tox Tests / c-locale-test (push) Failing after 5m38s
Tox Tests / test-setup (py313-setup, 3.13) (push) Failing after 5m43s
Tox Tests / unit-tests (ubuntu-latest, 3.14) (push) Failing after 5m55s
Tox Tests / pep8 (push) Failing after 57s
Tox Tests / test-setup (py314-setup, 3.14) (push) Failing after 1m17s

This commit is contained in:
2026-02-11 15:43:38 +03:00
parent 57a126047f
commit af91b7daa8

View File

@@ -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 }}