Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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"]

Expand All @@ -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
2 changes: 1 addition & 1 deletion datacache/version.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
__version__ = '1.5.1'
__version__ = '1.6.0'


Loading