8000 MNT add pickle5 install to azure-pipelines script · shoyer/numpy@c6ff6cb · GitHub
[go: up one dir, main page]

Skip to content

Commit c6ff6cb

Browse files
committed
MNT add pickle5 install to azure-pipelines script
1 parent 63a4ff0 commit c6ff6cb

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

azure-pipelines.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
displayName: 'make gfortran available on mac os vm'
3131
- script: python -m pip install --upgrade pip setuptools wheel
3232
displayName: 'Install tools'
33-
- script: python -m pip install cython nose pytz pytest
33+
- script: python -m pip install cython nose pytz pytest pickle5
3434
displayName: 'Install dependencies; some are optional to avoid test skips'
3535
# NOTE: init_dgelsd failed init issue with current ACCELERATE /
3636
# LAPACK configuration on Azure macos image; at the time of writing
@@ -80,10 +80,12 @@ jobs:
8080
PYTHON_VERSION: '3.6'
8181
PYTHON_ARCH: 'x64'
8282
TEST_MODE: full
83+
INSTALL_PICKLE5: 1
8384
Python37-64bit-full:
8485
PYTHON_VERSION: '3.7'
8586
PYTHON_ARCH: 'x64'
8687
TEST_MODE: full
88+
INSTALL_PICKLE5: 1
8789
steps:
8890
- task: UsePythonVersion@0
8991
inputs:
@@ -104,6 +106,7 @@ jobs:
104106
displayName: 'Install dependencies; some are optional to avoid test skips'
105107
# NOTE: for Windows builds it seems much more tractable to use runtests.py
106108
# vs. manual setup.py and then runtests.py for testing only
109+
- script: if [%INSTALL_PICKLE5%]==[1] python -m pip install pickle5
107110
- script: python runtests.py --show-build-log --mode=$(TEST_MODE) -- -rsx --junitxml=junit/test-results.xml
108111
displayName: 'Build NumPy & Run Full NumPy Test Suite'
109112
- task: PublishTestResults@2

0 commit comments

Comments
 (0)
0