Skip to content

Commit bc0f6e7

Browse files
committed
CI: Run coverage on Windows
1 parent d5c1c07 commit bc0f6e7

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

appveyor.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,8 @@ install:
2323

2424
# Install the dependencies of the project.
2525
- python -m pip install --upgrade pip setuptools wheel
26-
- pip install numpy scipy matplotlib nose h5py mock pydicom
26+
- pip install numpy scipy matplotlib h5py pydicom
27+
- pip install nose mock coverage codecov
2728
- pip install .
2829
- SET NIBABEL_DATA_DIR=%CD%\nibabel-data
2930

@@ -33,4 +34,8 @@ test_script:
3334
# Change into an innocuous directory and find tests from installation
3435
- mkdir for_testing
3536
- cd for_testing
36-
- nosetests --with-doctest nibabel
37+
- cp ../.coveragerc .
38+
- nosetests --with-doctest --with-coverage --cover-package nibabel nibabel
39+
40+
after_test:
41+
- codecov

0 commit comments

Comments
 (0)