-
-
Notifications
You must be signed in to change notification settings - Fork 17.9k
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
TST: Skip 32bit failing IntervalTree tests #23442
Conversation
Hello @jschendel! Thanks for submitting the PR.
|
Codecov Report
@@ Coverage Diff @@
## master #23442 +/- ##
=======================================
Coverage 92.21% 92.21%
=======================================
Files 161 161
Lines 51187 51187
=======================================
Hits 47202 47202
Misses 3985 3985
Continue to review full report at Codecov.
|
thanks! |
https://travis-ci.org/MacPython/pandas-wheels/jobs/449669142 hmm this is now failing for a different reason .get_indexer should be returning platform int - but it’s not ? (maybe just this case) |
Hi, I get failures on my 32bit installation when leaf_size=10000. |
…xamples * repo_org/master: (66 commits) CLN: doc string (pandas-dev#23469) DOC: Add cookbook entry for triangular correlation matrix (GH22840) (pandas-dev#23032) add number of Errors, Warnings to scripts/validate_docstrings.py (pandas-dev#23150) BUG: Allow freq conversion from dt64 to period (pandas-dev#23460) ENH: Add FrozenList.union and .difference (pandas-dev#23394) REF: cython cleanup, typing, optimizations (pandas-dev#23464) strictness and checks for Timedelta _simple_new (pandas-dev#23433) Fixing flake8 problems new to flake8 3.6.0 (pandas-dev#23472) DOC: Updating the docstring of Series.dot (pandas-dev#22890) TST: Fixturize series/test_analytics.py (pandas-dev#22755) BUG/ENH: Handle NonexistentTimeError in date rounding (pandas-dev#23406) PERF: speed up concat on Series by making _get_axis_number() a classmethod (pandas-dev#23404) REF: Remove DatetimelikeArrayMixin._shallow_copy (pandas-dev#23430) REF: strictness/simplification in DatetimeArray/Index _simple_new (pandas-dev#23431) REF: cython cleanup, typing, optimizations (pandas-dev#23456) TST: tweak Hypothesis configuration and idioms (pandas-dev#23441) BUG: fix HDFStore.append with all empty strings error (GH12242) (pandas-dev#23435) TST: Skip 32bit failing IntervalTree tests (pandas-dev#23442) BUG: Deprecate nthreads argument (pandas-dev#23112) style: fix import format at pandas/core/reshape (pandas-dev#23387) ...
xref #23440, #23353 (comment)
Note that we've been skipping tests due to this issue for some time now, it just wasn't formally documented as an issue:
pandas/pandas/tests/indexes/interval/test_interval_tree.py
Lines 88 to 91 in 9019582
I recently added some new tests that hit this same issue but were not skipped and are now causing the pandas-wheels nightly builds to fail. This PR causes those tests to be skipped on 32bit, and modifies the existing skipped test to skip at the parameter level instead of globally skipping the test (one of the previously skipped parametrized values should be valid on 32bit).