-
-
Notifications
You must be signed in to change notification settings - Fork 18.4k
split off scalar tests to submodules #19752
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
Conversation
@@ -105,15 +105,6 @@ def test_timedelta_ops_scalar(self): | |||
result = base - offset | |||
assert result == expected_sub |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
move this to the sub module as well
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This will get moved (and parametrized) in an upcoming pass. For right now this PR is intended to be a minimal set that will allow for #19378 to go through.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
better to move it now
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
OK, but just this one...
Codecov Report
@@ Coverage Diff @@
## master #19752 +/- ##
==========================================
+ Coverage 91.6% 91.6% +<.01%
==========================================
Files 150 150
Lines 48864 48864
==========================================
+ Hits 44761 44762 +1
+ Misses 4103 4102 -1
Continue to review full report at Codecov.
|
moved the rest of the scalar files. ping on green. |
@jbrockmendel you will need to rebase anything that involves scalar tests |
Spun off from #19738, implements test_arithmetic for timedeltas, moves and organizes tests without changing anything in the non-test code.
A handful of xfail tests are implemented (these are fixed in #19378)