-
-
Notifications
You must be signed in to change notification settings - Fork 19k
TST: add regression test for interpolate(method='time') with Int64/Float64 (#40252) #62286
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
skalwaghe-56
wants to merge
1
commit into
pandas-dev:main
from
skalwaghe-56:test-interpolate-time-nullable
Open
TST: add regression test for interpolate(method='time') with Int64/Float64 (#40252) #62286
skalwaghe-56
wants to merge
1
commit into
pandas-dev:main
from
skalwaghe-56:test-interpolate-time-nullable
Conversation
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
3 tasks
@jbrockmendel Request you to review and let me know!
@skalwaghe-56
skalwaghe-56
force-pushed
the
test-interpolate-time-nullable
branch
from
September 8, 2025 14:02
e4404b9
to
d4f4b85
Compare
@jorisvandenbossche Kindly request you to check and let me know!
@skalwaghe-56
skalwaghe-56
force-pushed
the
test-interpolate-time-nullable
branch
5 times, most recently
from
September 10, 2025 10:43
8dfdeea
to
63e8fb5
Compare
@simonjayhawkins
simonjayhawkins
added
the
Testing
pandas testing functions or related to the test suite
label
Sep 10, 2025
@skalwaghe-56
skalwaghe-56
force-pushed
the
test-interpolate-time-nullable
branch
2 times, most recently
from
September 11, 2025 14:31
d009ce2
to
1385907
Compare
@jbrockmendel Request you to kindly check this.
@skalwaghe-56
skalwaghe-56
force-pushed
the
test-interpolate-time-nullable
branch
3 times, most recently
from
September 16, 2025 08:00
300ce56
to
5bcffc2
Compare
@skalwaghe-56
skalwaghe-56
force-pushed
the
test-interpolate-time-nullable
branch
from
September 16, 2025 16:40
5bcffc2
to
353ab8c
Compare
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.
This PR adds a regression test for GH#40252. Confirms that
interpolate(method="time")
now works correctly on nullable Int64 and Float64 dtypes. No code changes, test-only. Ensures the behavior is locked in to prevent regressions.Thanks!