Remove redundant GitHub Actions unit-test job#942
Merged
Conversation
Copilot
AI
changed the title
[WIP] Remove redundant unit testing from GitHub Actions
Remove redundant GitHub Actions unit-test job
Jul 10, 2026
Contributor
There was a problem hiding this comment.
Pull request overview
This PR updates the repository’s CI documentation and GitHub Actions PR workflow to reflect that unit/E2E/benchmark/SDL validation now happens in the IDDP/ADO pipelines, leaving GitHub Actions responsible only for PR-time package build and distribution metadata verification.
Changes:
- Removed the GitHub Actions unit-test matrix job, keeping only
python -m build+twine check+ artifact upload. - Renamed the GitHub Actions workflow from “Build and Unit Tests” to “Build” and updated its header comment to match build-only scope.
- Updated pipeline/version-support documentation to point Python version test-matrix ownership to ADO pipeline files.
Reviewed changes
Copilot reviewed 3 out of 3 changed files in this pull request and generated 1 comment.
| File | Description |
|---|---|
doc/python_version_support_policy.md |
Repoints “supported Python versions encoded in…” references from GitHub Actions to ADO pipeline files. |
.Pipelines/CI-AND-RELEASE-PIPELINES.md |
Updates narrative to describe GitHub Actions as PR package build verification (build + twine check) only. |
.github/workflows/python-package.yml |
Renames workflow and removes the unit-test matrix job, preserving build/package verification steps. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
RyAuld
approved these changes
Jul 10, 2026
Avery-Dunn
approved these changes
Jul 10, 2026
trwalke
approved these changes
Jul 10, 2026
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.
The GitHub Actions PR workflow was still running the full Python 3.9–3.14 unit-test matrix even though that coverage now lives in the IDDP/ADO PR pipeline. This trims the workflow down to build/package verification only while keeping PR coverage for
sdist/wheelcreation andtwine check.Workflow scope
.github/workflows/python-package.ymlfromBuild and Unit TeststoBuildGitHub Actions job cleanup
cijob entirelybuildjob unchanged:python -m build --sdist --wheeltwine checkpull_requesttrigger with no branch filterRelated documentation alignment
.Pipelines/CI-AND-RELEASE-PIPELINES.mdto describe GitHub Actions as PR build verification onlydoc/python_version_support_policy.mdso the supported-Python test matrix now points to the ADO pipeline files rather than the removed GitHub Actionspytestmatrix