File tree Expand file tree Collapse file tree 1 file changed +1
-11
lines changed Expand file tree Collapse file tree 1 file changed +1
-11
lines changed Original file line number Diff line number Diff line change 8
8
- job : ${{ parameters.name }}
9
9
pool :
10
10
vmImage : ${{ parameters.vmImage }}
11
- variables :
12
- VIRTUALENV : ' testvenv'
13
11
strategy :
14
12
matrix :
15
13
${{ insert }} : ${{ parameters.matrix }}
@@ -21,31 +19,23 @@ jobs:
21
19
addToPath : true
22
20
architecture : ' $(PYTHON_ARCH)'
23
21
- script : |
24
- python -m pip install --upgrade pip virtualenv
25
- virtualenv --python=python venv
26
- venv\\scripts\\activate
27
- python --version
28
22
python -m pip install --upgrade pip setuptools>=30.3.0 wheel
29
- displayName: 'Install virtualenv '
23
+ displayName: 'Update build tools '
30
24
- script : |
31
- venv\\scripts\\activate
32
25
python -m pip install numpy scipy matplotlib h5py pydicom
33
26
python -m pip install nose mock coverage codecov
34
27
displayName: 'Install dependencies'
35
28
- script : |
36
- venv\\scripts\\activate
37
29
python -m pip install .
38
30
SET NIBABEL_DATA_DIR=%CD%\\nibabel-data
39
31
displayName: 'Install nibabel'
40
32
- script : |
41
- venv\\scripts\\activate
42
33
mkdir for_testing
43
34
cd for_testing
44
35
cp ../.coveragerc .
45
36
nosetests --with-doctest --with-coverage --cover-package nibabel nibabel
46
37
displayName: 'Install nibabel'
47
38
- script : |
48
- venv\\scripts\\activate
49
39
cd for_testing
50
40
codecov
51
41
displayName: 'Upload To Codecov'
You can’t perform that action at this time.
0 commit comments