We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d5c1c07 commit bc0f6e7Copy full SHA for bc0f6e7
appveyor.yml
@@ -23,7 +23,8 @@ install:
23
24
# Install the dependencies of the project.
25
- python -m pip install --upgrade pip setuptools wheel
26
- - pip install numpy scipy matplotlib nose h5py mock pydicom
+ - pip install numpy scipy matplotlib h5py pydicom
27
+ - pip install nose mock coverage codecov
28
- pip install .
29
- SET NIBABEL_DATA_DIR=%CD%\nibabel-data
30
@@ -33,4 +34,8 @@ test_script:
33
34
# Change into an innocuous directory and find tests from installation
35
- mkdir for_testing
36
- cd for_testing
- - 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