test : added unit tests for _validate_existing_column_sequence helper#1387
test : added unit tests for _validate_existing_column_sequence helper#1387tmdeveloper007 wants to merge 1 commit into
Conversation
|
Hi @im-anishraj, this pull request addresses issue #1376. Here is a brief summary of what was implemented: What was done:
Tests added in
Verification: All 5 tests pass. No existing tests were modified. |
im-anishraj
left a comment
There was a problem hiding this comment.
Thanks for the focused coverage. CI is green, but two cleanup changes are needed before this can be merged.
- Change the PR body from
Closes #1376to non-closing references, for exampleRefs #1376andRefs #1403. Issue #1376 was already closed as part of the umbrella consolidation, so this PR should not close it again. - Import
_validate_existing_column_sequenceonce at module level or once inside the test class instead of repeating the same local import in each test method.
Once that is cleaned up, I can recheck with the existing green CI results.
|
@tmdeveloper007 is attempting to deploy a commit to the xtylishanish-gmailcom's projects Team on Vercel. A member of the Team first needs to authorize it. |
4cacb9a to
b48edf1
Compare
|
Hi @im-anishraj, I have successfully rebased this branch on top of the latest upstream |
im-anishraj
left a comment
There was a problem hiding this comment.
This is now blocked by a merge conflict with latest main after the related helper-test PRs were merged.
A merge simulation against current origin/main fails in:
tests/test_cleaning.py
Please rebase/update the branch on latest main and keep this PR limited to its own helper coverage.
|
Hi @tmdeveloper007, maintainer deadline update: please push the requested fixes/rebase or reply with your ETA by May 31, 2026 at 11:59 PM IST. We are not closing this PR right now. This deadline is only to keep the active review queue organized and confirm which PRs are still being worked on. If this PR overlaps with already merged work or another open PR, please also clarify what unique change remains. Thanks. |
|
Hi, this PR has successfully passed all local checks and is ready to be merged. Please review it at your convenience. Thank you! |
|
@tmdeveloper007 thanks for the update. I see your note that this is ready/updated for review. It is noted in the review queue; please keep the branch up to date with main, make sure checks are green, and keep the PR linked to its assigned issue. |
|
Reopened as #2564 (rebased onto current upstream main). Please review the new PR. |
Refs #1387
Refs #1376, #1403
Summary
Added unit tests for
_validate_existing_column_sequencehelper inarnio/cleaning.py.Changes Made
tests/test_cleaning.py: AddedTestValidateExistingColumnSequenceclass with 5 tests covering missing column errors, empty sequence handling, and valid column normalization.Impact
Verification