-
-
Notifications
You must be signed in to change notification settings - Fork 18.4k
TST: Make ARM build work (not in the CI) #41739
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
Changes from all commits
49a570f
7cd7aaf
b3a00f1
b3db6bd
6e9457b
32ec532
78adf49
5acb475
a7c7c79
fccf727
7df1f52
0f1257f
8ebadbf
c0fd82d
e8e2cf9
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,6 +3,8 @@ | |
import numpy as np | ||
import pytest | ||
|
||
from pandas.compat import is_platform_arm | ||
|
||
from pandas.core.dtypes.dtypes import ( | ||
CategoricalDtype, | ||
IntervalDtype, | ||
|
@@ -168,6 +170,7 @@ def test_subtype_integer_with_non_integer_borders(self, subtype): | |
) | ||
tm.assert_index_equal(result, expected) | ||
|
||
@pytest.mark.xfail(is_platform_arm(), reason="GH 41740") | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This one is already xfailed on 1.2.x, xref #38719 |
||
def test_subtype_integer_errors(self): | ||
# float64 -> uint64 fails with negative values | ||
index = interval_range(-10.0, 10.0) | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,6 +4,8 @@ | |
from numpy import iinfo | ||
import pytest | ||
|
||
from pandas.compat import is_platform_arm | ||
|
||
import pandas as pd | ||
from pandas import ( | ||
DataFrame, | ||
|
@@ -750,7 +752,7 @@ def test_to_numeric_from_nullable_string(values, nullable_string_dtype, expected | |
"UInt64", | ||
"signed", | ||
"UInt64", | ||
marks=pytest.mark.xfail(reason="GH38798"), | ||
marks=pytest.mark.xfail(not is_platform_arm(), reason="GH38798"), | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. this test added in #38746, not on 1.2.x |
||
), | ||
([1, 1], "Int64", "unsigned", "UInt8"), | ||
([1.0, 1.0], "Float32", "unsigned", "UInt8"), | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,6 +6,7 @@ | |
import numpy as np | ||
import pytest | ||
|
||
from pandas.compat import is_platform_arm | ||
from pandas.errors import UnsupportedFunctionCall | ||
|
||
from pandas import ( | ||
|
@@ -1072,6 +1073,7 @@ def test_rolling_sem(frame_or_series): | |
tm.assert_series_equal(result, expected) | ||
|
||
|
||
@pytest.mark.xfail(is_platform_arm(), reason="GH 41740") | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This only fails on ARM64 Linux. It passes on M1 Mac. #38921 |
||
@pytest.mark.parametrize( | ||
("func", "third_value", "values"), | ||
[ | ||
|
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.
typo for follow-up