From 6a7edb8e856e44e69270e8bf4e5e922260f64eae Mon Sep 17 00:00:00 2001 From: Gagaro Date: Mon, 10 Jun 2024 10:13:51 +0200 Subject: [PATCH] Remove coveralls from github actions --- .github/workflows/python-app.yml | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/.github/workflows/python-app.yml b/.github/workflows/python-app.yml index 7a236073..a829e726 100644 --- a/.github/workflows/python-app.yml +++ b/.github/workflows/python-app.yml @@ -87,18 +87,14 @@ jobs: sudo apt-get update -qq sudo apt-get install -y libproj-dev libgeos-dev gdal-bin libgdal-dev python -m pip install --upgrade pip - pip install -U flake8 coveralls psycopg2-binary argparse + pip install -U flake8 psycopg2-binary argparse pip install -U Django~=${{ matrix.django_version }}.0 - name: Lint with flake8 run: | flake8 --ignore=E501,W504 leaflet - name: Test run: | - python -W error::DeprecationWarning -W error::PendingDeprecationWarning -m coverage run ./quicktest.py leaflet --db=${{ matrix.database }} - - name: Coverage - if: ${{ success() }} - run: | - coveralls --service=github + python -W error::DeprecationWarning -W error::PendingDeprecationWarning quicktest.py leaflet --db=${{ matrix.database }} tests_node: runs-on: ubuntu-latest