diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 3257581..bec7aea 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -13,7 +13,7 @@ jobs: build: runs-on: ubuntu-latest strategy: - fail-fast: true + fail-fast: false matrix: python-version: ["3.9", "3.10", "3.11"] @@ -37,4 +37,8 @@ jobs: run: | ./test.sh - name: Publish coverage to Coveralls + # Coverage upload is best-effort: parallel matrix jobs race to post to + # the same Coveralls build, and the loser gets a "build already closed" + # error. Don't let that flake fail the whole test run. + continue-on-error: true uses: coverallsapp/github-action@v2.2.3 diff --git a/datacache/version.py b/datacache/version.py index a9de4d6..d946f51 100644 --- a/datacache/version.py +++ b/datacache/version.py @@ -1,3 +1,3 @@ -__version__ = '1.5.1' +__version__ = '1.6.0'