File tree 1 file changed +25
-0
lines changed
1 file changed +25
-0
lines changed Original file line number Diff line number Diff line change 26
26
parameters :
27
27
name : Windows
28
28
vmImage : vs2017-win2016
29
+
30
+ - job : py37_32bit
31
+ pool :
32
+ vmImage : ubuntu-18.04
33
+
34
+ steps :
35
+ - script : |
36
+ docker pull quay.io/pypa/manylinux2014_i686
37
+ docker run -v $(pwd):/pandas quay.io/pypa/manylinux2010_i686 \
38
+ /bin/bash -xc "cd pandas && \
39
+ /opt/python/cp37-cp37m/bin/python -m venv ~/virtualenvs/pandas-dev && \
40
+ . ~/virtualenvs/pandas-dev/bin/activate && \
41
+ python -m pip install --no-deps -U pip wheel setuptools && \
42
+ pip install cython numpy python-dateutil pytz pytest pytest-xdist hypothesis pytest-azurepipelines && \
43
+ python setup.py build_ext -q -i -j2 && \
44
+ python -m pip install --no-build-isolation -e . && \
45
+ pytest -m 'not slow and not network and not clipboard' pandas --junitxml=test-data.xml"
46
+ displayName: 'Run 32-bit manylinux2014 Docker Build / Tests'
47
+
48
+ - task : PublishTestResults@2
49
+ condition : succeededOrFailed()
50
+ inputs :
51
+ testResultsFiles : ' **/test-*.xml'
52
+ failTaskOnFailedTests : true
53
+ testRunTitle : ' Publish test results for Python 3.7-32 bit full Linux'
You can’t perform that action at this time.
0 commit comments