From 52791c3381533d425c2be40524798b62d008db8c Mon Sep 17 00:00:00 2001 From: Alan Briolat Date: Sun, 27 Oct 2019 16:16:44 +0000 Subject: [PATCH] Try out codecov instead of coveralls --- .github/workflows/main.yml | 3 +++ pytest.ini | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 624936e3..8e9225a9 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -44,3 +44,6 @@ jobs: TOXENV: ${{ matrix.toxenv }} COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }} COVERALLS_SERVICE_NAME: github-actions + - uses: codecov/codecov-action@v1.0.3 + with: + token: ${{ secrets.CODECOV_TOKEN }} diff --git a/pytest.ini b/pytest.ini index 4f70ef19..824b868c 100644 --- a/pytest.ini +++ b/pytest.ini @@ -1,5 +1,5 @@ [pytest] testpaths = tests/ -addopts = --cov=src/ -W ignore::schematics.deprecated.SchematicsDeprecationWarning +addopts = --cov=src/ --cov-report=xml -W ignore::schematics.deprecated.SchematicsDeprecationWarning markers = bot: mark a test as Bot-based rather than IRCClient-based