Conversation
There was a problem hiding this comment.
1 issue found across 14 files
Prompt for AI agents (all issues)
Check if these issues are valid — if so, understand the root cause of each and fix them.
<file name=".github/workflows/ci.yml">
<violation number="1" location=".github/workflows/ci.yml:81">
P2: Coveralls uploads run for each matrix job without parallel build configuration, so Coveralls will treat each upload as a separate build and coverage can be incomplete or overwritten. Configure `parallel: true` + `flag-name` on the matrix step and add a `parallel-finished` job to close/aggregate the build.</violation>
</file>
Reply with feedback, questions, or to request a fix. Tag @cubic-dev-ai to re-run a review.
|
|
||
| - name: Upload coverage to Coveralls | ||
| # if: matrix.python-version == '3.9' && github.event_name == 'push' && github.ref == 'refs/heads/main' | ||
| uses: coverallsapp/github-action@v2 |
There was a problem hiding this comment.
P2: Coveralls uploads run for each matrix job without parallel build configuration, so Coveralls will treat each upload as a separate build and coverage can be incomplete or overwritten. Configure parallel: true + flag-name on the matrix step and add a parallel-finished job to close/aggregate the build.
Prompt for AI agents
Check if this issue is valid — if so, understand the root cause and fix it. At .github/workflows/ci.yml, line 81:
<comment>Coveralls uploads run for each matrix job without parallel build configuration, so Coveralls will treat each upload as a separate build and coverage can be incomplete or overwritten. Configure `parallel: true` + `flag-name` on the matrix step and add a `parallel-finished` job to close/aggregate the build.</comment>
<file context>
@@ -73,8 +73,12 @@ jobs:
+
+ - name: Upload coverage to Coveralls
+ # if: matrix.python-version == '3.9' && github.event_name == 'push' && github.ref == 'refs/heads/main'
+ uses: coverallsapp/github-action@v2
build:
</file context>
sohil-kshirsagar
approved these changes
Jan 18, 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.
Summary
Adds comprehensive unit test coverage for all critical SDK core modules (excluding instrumentations) and integrates Coveralls for automated coverage reporting on CI.
Changes
test_sampling.py- sampling rate logic and validationtest_otel_converter.py- OpenTelemetry span to CleanSpanData conversiontest_trace_blocking_manager.py- trace blocking for oversized/errored tracestest_mode_utils.py- RECORD/REPLAY mode utilitiestest_span_utils.py- centralized span management utilitiestest_td_span_processor.py- custom OTel span processortest_span_exporter.py- span export adapter managementtest_drift_sdk.py- main TuskDrift singleton classtest_communicator.py- protobuf CLI communication layerpytest-covto dev dependencies.gitignoreCONTRIBUTING.md