ci: drop redundant Test PyPI upload step from release workflow - #355
Merged
Conversation
TestPyPI doesn't catch anything the static build/package checks (validate-pyproject, twine check via build-and-inspect-python-package) don't already catch, and it's one more external service in the critical path of every release.
blink1073
enabled auto-merge (squash)
August 1, 2026 12:43
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #355 +/- ##
=======================================
Coverage 92.93% 92.93%
=======================================
Files 6 6
Lines 439 439
=======================================
Hits 408 408
Misses 31 31
Flags with carried forward coverage won't be shown. Click here to find out more. 🚀 New features to boost your workflow:
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
References
Description
Implements item 1 of the CI/release workflow hardening checklist (based on calysto/metakernel#466): drops the "Upload package to Test PyPI" step from
release.yml.Items 2 and 3 of that checklist are already covered in this repo:
validate-pyprojectalready runs via pre-commit in thestaticjob, andtwine check --strictalready runs as part ofhynek/build-and-inspect-python-package(used by thebuildjob on every push/PR).b2c4686("ci: allow codecov uploads on fork PRs targeting Calysto/octave_kernel").Changes
release.yml. It doesn't catch anything the existing static build/package checks don't already catch, and it's one more external service in the critical path of every release.Backwards-incompatible changes
None
Testing
just pre-commitjust typingAI usage