Skip to content

Commit

Permalink
CI: Run coverage on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
effigies committed Feb 8, 2019
1 parent d5c1c07 commit bc0f6e7
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions appveyor.yml
Expand Up @@ -23,7 +23,8 @@ install:

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

Expand All @@ -33,4 +34,8 @@ test_script:
# Change into an innocuous directory and find tests from installation
- mkdir for_testing
- cd for_testing
- nosetests --with-doctest nibabel
- cp ../.coveragerc .
- nosetests --with-doctest --with-coverage --cover-package nibabel nibabel

after_test:
- codecov

0 comments on commit bc0f6e7

Please sign in to comment.