From f981e522adcbe1f726e84039120d42bca914730f Mon Sep 17 00:00:00 2001 From: jqtrde Date: Wed, 7 Jan 2026 09:56:37 -0500 Subject: [PATCH 1/3] Remove codecov references --- .github/workflows/test.yaml | 9 +-------- CHANGELOG.md | 7 +++---- README.md | 2 +- codecov.yml | 14 -------------- 4 files changed, 5 insertions(+), 27 deletions(-) delete mode 100644 codecov.yml diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index f9a5e55..1674bf6 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -37,14 +37,7 @@ jobs: run: uv run pre-commit run --all-files - name: Run tests with coverage - run: uv run pytest --cov --cov-config=.coveragerc --cov-report=xml + run: uv run pytest --cov --cov-config=.coveragerc --cov-report=term-missing --cov-report=xml - name: List all files in current directory run: ls -la - - - name: Upload coverage to GitHub (optional, internal) - if: matrix.python-version == '3.10' - uses: actions/upload-artifact@v4 - with: - name: coverage-report - path: coverage.xml diff --git a/CHANGELOG.md b/CHANGELOG.md index 40f1aa8..94394de 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,9 +1,8 @@ -# Unreleased - -======= +# 2.2.1 (2026-01-07) +- Remove codecov references # 2.2.0 (2026-01-06) -- Use UV +- Use UV in GHA workflows # 2.1.0 (2025-12-24) - Replace black with ruff diff --git a/README.md b/README.md index 0f0dd86..e2f635a 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # tilesets-cli -[![Build Status](https://github.com/mapbox/tilesets-cli/actions/workflows/release.yaml/badge.svg)](https://github.com/mapbox/tilesets-cli/actions/workflows/release.yaml) [![codecov](https://codecov.io/gh/mapbox/tilesets-cli/branch/master/graph/badge.svg?token=YBTKyc2o3j)](https://codecov.io/gh/mapbox/tilesets-cli) +[![Build Status](https://github.com/mapbox/tilesets-cli/actions/workflows/release.yaml/badge.svg)](https://github.com/mapbox/tilesets-cli/actions/workflows/release.yaml) CLI for interacting with and preparing data for the [Mapbox Tiling Service](https://docs.mapbox.com/mapbox-tiling-service/overview/). diff --git a/codecov.yml b/codecov.yml deleted file mode 100644 index 81ad7a9..0000000 --- a/codecov.yml +++ /dev/null @@ -1,14 +0,0 @@ -ignore: - - "tests" - - "setup.py" - -codecov: - notify: - require_ci_to_pass: yes - -coverage: - status: - project: - default: - threshold: 3% - base: auto From 1a86479d1a0090a9c381cd1ad57921c6bb996bfe Mon Sep 17 00:00:00 2001 From: jqtrde Date: Wed, 7 Jan 2026 10:33:34 -0500 Subject: [PATCH 2/3] Use PyPI version badge --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index e2f635a..7c7188c 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # tilesets-cli -[![Build Status](https://github.com/mapbox/tilesets-cli/actions/workflows/release.yaml/badge.svg)](https://github.com/mapbox/tilesets-cli/actions/workflows/release.yaml) +[![PyPI](https://img.shields.io/pypi/v/mapbox-tilesets.svg)](https://pypi.org/project/mapbox-tilesets/) CLI for interacting with and preparing data for the [Mapbox Tiling Service](https://docs.mapbox.com/mapbox-tiling-service/overview/). From 532ad5f03205d35779db9ce9fac96c26a2e6ae7d Mon Sep 17 00:00:00 2001 From: jqtrde Date: Wed, 7 Jan 2026 11:31:08 -0500 Subject: [PATCH 3/3] No need for an xml report --- .github/workflows/test.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 1674bf6..db255fd 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -37,7 +37,7 @@ jobs: run: uv run pre-commit run --all-files - name: Run tests with coverage - run: uv run pytest --cov --cov-config=.coveragerc --cov-report=term-missing --cov-report=xml + run: uv run pytest --cov --cov-config=.coveragerc --cov-report=term-missing - name: List all files in current directory run: ls -la