diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 94982e29..474441ce 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -61,13 +61,8 @@ jobs: pip install ".[test]" - name: Test with inv run: inv cover qa - - name: Coveralls - if: github.repository == 'python-restx/flask-restx' && github.event == 'push' - run: | - pip install coveralls - coveralls --rcfile=coverage.rc - env: - COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }} + - name: Codecov + uses: codecov/codecov-action@v1 bench: needs: unit-tests runs-on: ubuntu-latest diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 990ff2c5..00000000 --- a/.travis.yml +++ /dev/null @@ -1,9 +0,0 @@ -language: python -python: "3.8" -if: type = pull_request -install: - - pip install ".[dev]" coveralls -script: - - inv cover -after_success: - - coveralls --rcfile=coverage.rc