File tree 2 files changed +23
-5
lines changed
pandas/tests/indexes/numeric
2 files changed +23
-5
lines changed Original file line number Diff line number Diff line change
1
+ version : 2.1
2
+
3
+ jobs :
4
+ test-arm :
5
+ machine :
6
+ image : ubuntu-2004:202101-01
7
+ resource_class : arm.medium
8
+ environment :
9
+ ENV_FILE : ci/deps/circle-37-arm64.yaml
10
+ PYTEST_WORKERS : auto
11
+ PATTERN : " not slow and not network and not clipboard and not arm_slow"
12
+ PYTEST_TARGET : " pandas"
13
+ steps :
14
+ - checkout
15
+ - run : ci/setup_env.sh
16
+ - run : PATH=$HOME/miniconda3/envs/pandas-dev/bin:$HOME/miniconda3/condabin:$PATH ci/run_tests.sh
17
+
18
+ workflows :
19
+ test :
20
+ jobs :
21
+ - test-arm
Original file line number Diff line number Diff line change 2
2
import pytest
3
3
4
4
from pandas ._libs .tslibs import Timestamp
5
- from pandas .compat import (
6
- is_platform_arm ,
7
- is_platform_mac ,
8
- )
5
+ from pandas .compat import is_platform_arm
9
6
10
7
import pandas as pd
11
8
from pandas import (
@@ -536,7 +533,7 @@ def test_constructor(self, dtype):
536
533
tm .assert_index_equal (res , idx )
537
534
538
535
@pytest .mark .xfail (
539
- not ( is_platform_arm () and is_platform_mac () ),
536
+ not is_platform_arm (),
540
537
reason = "https://github.com/numpy/numpy/issues/19146" ,
541
538
)
542
539
def test_constructor_does_not_cast_to_float (self ):
You can’t perform that action at this time.
0 commit comments