File tree Expand file tree Collapse file tree 3 files changed +17
-1
lines changed Expand file tree Collapse file tree 3 files changed +17
-1
lines changed Original file line number Diff line number Diff line change 4848 pip install cython numpy python-dateutil pytz pytest pytest-xdist pytest-asyncio>=0.17 hypothesis && \
4949 python setup.py build_ext -q -j2 && \
5050 python -m pip install --no-build-isolation -e . && \
51+ export PANDAS_CI=1 && \
5152 pytest -m 'not slow and not network and not clipboard and not single_cpu' pandas --junitxml=test-data.xml"
5253 displayName: 'Run 32-bit manylinux2014 Docker Build / Tests'
5354
Original file line number Diff line number Diff line change 55import numpy as np
66import pytest
77
8+ from pandas .compat import (
9+ IS64 ,
10+ is_ci_environment ,
11+ )
12+
813import pandas as pd
914from pandas import Series
1015import pandas ._testing as tm
@@ -157,6 +162,9 @@ def test_standardize_mapping():
157162 assert isinstance (com .standardize_mapping (dd ), partial )
158163
159164
165+ @pytest .mark .xfail (
166+ is_ci_environment () and not IS64 , reason = "Failing on 32 bit Python CI job"
167+ )
160168def test_git_version ():
161169 # GH 21295
162170 git_version = pd .__git_version__
Original file line number Diff line number Diff line change 44
55import pytest
66
7- from pandas .compat import is_numpy_dev
7+ from pandas .compat import (
8+ IS64 ,
9+ is_ci_environment ,
10+ is_numpy_dev ,
11+ )
812from pandas .util ._print_versions import (
913 _get_dependency_info ,
1014 _get_sys_info ,
@@ -78,6 +82,9 @@ def test_show_versions_console_json(capsys):
7882 assert result == expected
7983
8084
85+ @pytest .mark .xfail (
86+ is_ci_environment () and not IS64 , reason = "Failing on 32 bit Python CI job"
87+ )
8188def test_show_versions_console (capsys ):
8289 # gh-32041
8390 # gh-32041
You can’t perform that action at this time.
0 commit comments