File tree Expand file tree Collapse file tree 2 files changed +23
-5
lines changed
pandas/tests/indexes/numeric Expand file tree Collapse file tree 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 22import pytest
33
44from 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
96
107import pandas as pd
118from pandas import (
@@ -536,7 +533,7 @@ def test_constructor(self, dtype):
536533 tm .assert_index_equal (res , idx )
537534
538535 @pytest .mark .xfail (
539- not ( is_platform_arm () and is_platform_mac () ),
536+ not is_platform_arm (),
540537 reason = "https://github.com/numpy/numpy/issues/19146" ,
541538 )
542539 def test_constructor_does_not_cast_to_float (self ):
You can’t perform that action at this time.
0 commit comments