We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c99ef12 commit 7b70af7Copy full SHA for 7b70af7
.azure-pipelines/windows.yml
@@ -29,17 +29,17 @@ jobs:
29
displayName: 'Update build tools'
30
- script: |
31
python -m pip install --find-links %EXTRA_WHEELS% %DEPENDS%
32
- python -m pip install nose mock coverage codecov
33
displayName: 'Install dependencies'
34
35
- python -m pip install .
+ python -m pip install .[test]
36
SET NIBABEL_DATA_DIR=%CD%\\nibabel-data
37
displayName: 'Install nibabel'
38
39
mkdir for_testing
40
cd for_testing
41
cp ../.coveragerc .
42
nosetests --with-doctest --with-coverage --cover-package nibabel nibabel
+ pytest -v nibabel/tests/test_affines.py
43
displayName: 'Nose tests'
44
45
0 commit comments