Skip to content

Commit 0c924c2

Browse files
committed
update coveralls and badges
1 parent a11956f commit 0c924c2

File tree

4 files changed

+24
-3
lines changed

4 files changed

+24
-3
lines changed
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,3 +34,24 @@ jobs:
3434

3535
- name: Run Tests{% endraw %}
3636
run: uv run pytest tests --verbose --color=yes --cov=pytileproj --cov-report term-missing
37+
38+
- name: Upload Coverage
39+
shell: bash -l {0}
40+
run: |
41+
uv pip install coveralls && coveralls --service=github-actions
42+
env:
43+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
44+
COVERALLS_FLAG_NAME: ${{ matrix.python-version }}
45+
COVERALLS_PARALLEL: true
46+
47+
coveralls:
48+
name: Submit Coveralls
49+
needs: build
50+
runs-on: ubuntu-latest
51+
container: python:3-slim
52+
steps:
53+
- name: Finished
54+
run: |
55+
pip3 install --upgrade coveralls && coveralls --service=github --finish
56+
env:
57+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# pytileproj
22

3-
[![Build Status](https://github.com/TUW-GEO/pytileproj/workflows/ubuntu/badge.svg)](https://github.com/TUW-GEO/pytileproj/actions/workflows/ubuntu.yml) [![Build Status](https://github.com/TUW-GEO/pytileproj/workflows/windows/badge.svg)](https://github.com/TUW-GEO/pytileproj/actions/workflows/windows.yml) [![codecov](https://coveralls.io/repos/github/TUW-GEO/pytileproj/badge.svg?branch=master)](https://coveralls.io/github/TUW-GEO/pytileproj?branch=master) [![pypi](https://badge.fury.io/py/pytileproj.svg)](https://badge.fury.io/py/pytileproj) [![docs](https://img.shields.io/badge/pytileproj-documentation-blue)](https://tuw-geo.github.io/pytileproj)
3+
[![Build Status](https://github.com/TUW-GEO/pytileproj/workflows/ci/badge.svg)](https://github.com/TUW-GEO/pytileproj/actions/workflows/ci.yml) [![codecov](https://coveralls.io/repos/github/TUW-GEO/pytileproj/badge.svg?branch=master)](https://coveralls.io/github/TUW-GEO/pytileproj?branch=master) [![pypi](https://badge.fury.io/py/pytileproj.svg)](https://badge.fury.io/py/pytileproj) [![docs](https://img.shields.io/badge/pytileproj-documentation-blue)](https://tuw-geo.github.io/pytileproj)
44

55

66
A python package for working with projected tiling systems.

docs/guides/geometry.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@
131131
"name": "python",
132132
"nbconvert_exporter": "python",
133133
"pygments_lexer": "ipython3",
134-
"version": "3.12.3"
134+
"version": "3.12.12"
135135
}
136136
},
137137
"nbformat": 4,

docs/guides/grid.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -426,7 +426,7 @@
426426
"name": "python",
427427
"nbconvert_exporter": "python",
428428
"pygments_lexer": "ipython3",
429-
"version": "3.12.3"
429+
"version": "3.12.12"
430430
}
431431
},
432432
"nbformat": 4,

0 commit comments

Comments
 (0)