We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents e26e736 + 05a0f04 commit 5a96ea5Copy full SHA for 5a96ea5
.travis.yml
@@ -52,12 +52,13 @@ before_install:
52
- travis_retry pip install -r requirements.txt
53
- travis_retry git clone https://github.com/INCF/pybids.git ${HOME}/pybids &&
54
pip install -e ${HOME}/pybids
55
+- travis_retry pip install codecov
56
57
install:
58
- travis_retry pip install $PIP_FLAGS -e .[$NIPYPE_EXTRAS]
59
60
script:
-- py.test -v --doctest-modules nipype
61
+- py.test -v --cov nipype --cov-config .coveragerc --cov-report xml:cov.xml -c nipype/pytest.ini --doctest-modules nipype
62
63
deploy:
64
provider: pypi
@@ -69,3 +70,6 @@ deploy:
69
70
repo: nipy/nipype
71
branch: master
72
distributions: "sdist bdist_wheel"
73
+
74
+after_script:
75
+- codecov --file cov.xml --flags unittests -e TRAVIS_JOB_NUMBER
0 commit comments