From 3816107ed98df66268d5d2720585efbbd51728c6 Mon Sep 17 00:00:00 2001 From: Marcus Young Date: Wed, 4 Mar 2020 16:45:45 -0600 Subject: [PATCH] Remove coveralls from deploy/release actions --- .github/workflows/deploy.yml | 4 ---- .github/workflows/release.yml | 4 ---- 2 files changed, 8 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index e14d2a0..7d6748f 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -28,10 +28,6 @@ jobs: run: echo "::set-env name=PYTHONPATH::$(pwd)" - name: pytest run: py.test --cov-config .coveragerc --cov tilty --cov-report term-missing --cov-report xml --junitxml junit.xml tests - - name: coveralls - run: coveralls - env: - COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }} latest_deploy: runs-on: ubuntu-latest needs: [test] diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 521ffd0..c729915 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -27,10 +27,6 @@ jobs: run: echo "::set-env name=PYTHONPATH::$(pwd)" - name: pytest run: py.test --cov-config .coveragerc --cov tilty --cov-report term-missing --cov-report xml --junitxml junit.xml tests - - name: coveralls - run: coveralls - env: - COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }} upload_to_pypi: runs-on: ubuntu-latest needs: [test]