Skip to content

Commit 920eefa

Browse files
committed
CI: Add expected failing test to Azure
1 parent 22fe8c2 commit 920eefa

File tree

2 files changed

+10
-1
lines changed

2 files changed

+10
-1
lines changed

.azure-pipelines/windows.yml

+5-1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ jobs:
1010
vmImage: ${{ parameters.vmImage }}
1111
variables:
1212
EXTRA_WHEELS: "https://5cf40426d9f06eb7461d-6fe47d9331aba7cd62fc36c7196769e4.ssl.cf2.rackcdn.com"
13+
DEPENDS: numpy scipy matplotlib h5py pydicom
1314
strategy:
1415
matrix:
1516
${{ insert }}: ${{ parameters.matrix }}
@@ -20,11 +21,14 @@ jobs:
2021
versionSpec: '$(PYTHON_VERSION)'
2122
addToPath: true
2223
architecture: '$(PYTHON_ARCH)'
24+
- script: |
25+
echo %PYTHONHASHSEED%
26+
displayName: 'Display hash seed'
2327
- script: |
2428
python -m pip install --upgrade pip setuptools>=30.3.0 wheel
2529
displayName: 'Update build tools'
2630
- script: |
27-
python -m pip install --find-links %EXTRA_WHEELS% numpy scipy matplotlib h5py pydicom
31+
python -m pip install --find-links %EXTRA_WHEELS% %DEPENDS%
2832
python -m pip install nose mock coverage codecov
2933
displayName: 'Install dependencies'
3034
- script: |

azure-pipelines.yml

+5
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,11 @@ jobs:
1111
py35-x64:
1212
PYTHON_VERSION: '3.5'
1313
PYTHON_ARCH: 'x64'
14+
py35-h5py-check:
15+
PYTHON_VERSION: '3.5'
16+
PYTHON_ARCH: 'x64'
17+
PYTHONHASHSEED: 283137131
18+
DEPENDS: "h5py==2.9.0"
1419
py36-x86:
1520
PYTHON_VERSION: '3.6'
1621
PYTHON_ARCH: 'x86'

0 commit comments

Comments
 (0)