From 50132e982994f9840776e5b98edaccffbba843f9 Mon Sep 17 00:00:00 2001 From: Marius Gedminas Date: Mon, 18 Jan 2021 16:58:53 +0200 Subject: [PATCH] Fix coveralls integration See https://github.com/TheKevJames/coveralls-python/issues/252: the coveralls API requires a service name, which used to be 'github', but a new release of https://pypi.org/p/coveralls switched the default to 'github-actions'. Nobody understands the exact difference between the two, but I have 19 repositories that now fail coveralls uploads using the 'github-actions' service name, and I hope that switching to 'github' will fix them. --- .github/workflows/build.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 21dea66..94f34b8 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -62,6 +62,7 @@ jobs: run: coveralls env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + COVERALLS_SERVICE_NAME: github lint: name: ${{ matrix.toxenv }}