File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change 30
30
displayName : ' make gfortran available on mac os vm'
31
31
- script : python -m pip install --upgrade pip setuptools wheel
32
32
displayName : ' Install tools'
33
- - script : python -m pip install cython nose pytz pytest
33
+ - script : python -m pip install cython nose pytz pytest pickle5
34
34
displayName : ' Install dependencies; some are optional to avoid test skips'
35
35
# NOTE: init_dgelsd failed init issue with current ACCELERATE /
36
36
# LAPACK configuration on Azure macos image; at the time of writing
@@ -80,10 +80,12 @@ jobs:
80
80
PYTHON_VERSION : ' 3.6'
81
81
PYTHON_ARCH : ' x64'
82
82
TEST_MODE : full
83
+ INSTALL_PICKLE5 : 1
83
84
Python37-64bit-full :
84
85
PYTHON_VERSION : ' 3.7'
85
86
PYTHON_ARCH : ' x64'
86
87
TEST_MODE : full
88
+ INSTALL_PICKLE5 : 1
87
89
steps :
88
90
- task : UsePythonVersion@0
89
91
inputs :
@@ -104,6 +106,7 @@ jobs:
104
106
displayName : ' Install dependencies; some are optional to avoid test skips'
105
107
# NOTE: for Windows builds it seems much more tractable to use runtests.py
106
108
# vs. manual setup.py and then runtests.py for testing only
109
+ - script : if [%INSTALL_PICKLE5%]==[1] python -m pip install pickle5
107
110
- script : python runtests.py --show-build-log --mode=$(TEST_MODE) -- -rsx --junitxml=junit/test-results.xml
108
111
displayName : ' Build NumPy & Run Full NumPy Test Suite'
109
112
- task : PublishTestResults@2
You can’t perform that action at this time.
0 commit comments