diff --git a/.github/workflows/python_actions.yml b/.github/workflows/python_actions.yml index cca225a..a6f0d05 100644 --- a/.github/workflows/python_actions.yml +++ b/.github/workflows/python_actions.yml @@ -6,8 +6,6 @@ jobs: build: runs-on: ubuntu-latest - env: - COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }} steps: - uses: actions/checkout@v2 @@ -25,4 +23,7 @@ jobs: run: | py.test - - run: coveralls + - name: Upload coverage data to coveralls.io + run: coveralls + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/dev-requirements.txt b/dev-requirements.txt index fedfa9d..40e9586 100644 --- a/dev-requirements.txt +++ b/dev-requirements.txt @@ -1,5 +1,5 @@ -coveralls==1.8.2 -coverage==4.5.4 +coveralls==2.2.0 +coverage==5.2.1 Flask-Testing==0.8.0 httpretty==0.8.10; python_version < '3.0' httpretty==1.0.5; python_version > '3.0'