Merged
Conversation
ci: Unit test pipeline fix with update
Roopan-Microsoft
approved these changes
Mar 2, 2026
Avijit-Microsoft
approved these changes
Mar 2, 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.
Purpose
This pull request introduces a comprehensive suite of unit tests for the core data models and pipeline entities in the ContentProcessor backend, significantly improving test coverage and reliability. It also refines the coverage configuration and test workflow to ensure more accurate metrics. The most important changes are grouped below:
Testing: New Unit Tests for Core Modules
pipeline_file,pipeline_step_result,pipeline_data,schema, andcontent_process. These tests cover model creation, method behaviors, error handling, and interactions with external dependencies (e.g., storage and database helpers). [1] [2] [3] [4] [5]Testing: Enhancements to Existing Tests
test_pipeline_data.pyto cover theDataPipelineclass, including object parsing, file management, step result retrieval, and persistent storage interactions.DataPipelineandArtifactTypeto support new and enhanced tests intest_pipeline_data.py.Testing: Coverage and Workflow Improvements
.github/workflows/test.ymlto use the correct source directory (src) for coverage reporting, ensuring accurate measurement.[tool.coverage.run]and[tool.coverage.report]section topyproject.tomlto specify coverage source, omit test files, and exclude certain lines from coverage, further refining the coverage metrics.Testing: Clean-up and Organization
test_pipeline_data.pyto maintain clarity and focus on active tests.These changes collectively strengthen the backend's reliability by ensuring that core entities and their interactions are robustly tested and that coverage metrics are precise and meaningful.
Does this introduce a breaking change?
Golden Path Validation
Deployment Validation
What to Check
Verify that the following are valid
Other Information