Skip to content

Commit

Permalink
Merge pull request #433 from ketch/set_up_coveralls
Browse files Browse the repository at this point in the history
[WIP] First attempt to use coveralls.io.
  • Loading branch information
mandli committed Jul 12, 2014
2 parents 36ce2b4 + 27949c7 commit e646b1a
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ env:
python:
- 2.7
before_install:
- pip install coverage
- pip install python-coveralls
- sudo apt-get update -qq
- sudo apt-get install -qq gfortran liblapack-pic
- if [[ "${TEST_PACKAGE}" == "petclaw" ]]; then
Expand Down Expand Up @@ -37,10 +39,14 @@ script:
fi
- cd pyclaw/examples
- if [[ "${TEST_PACKAGE}" == "pyclaw" ]]; then
nosetests -v;
nosetests -v --with-coverage --cover-package=clawpack.pyclaw;
fi
- if [[ "${TEST_PACKAGE}" == "petclaw" ]]; then
mpirun -n 4 ${CLAWPACK}/petsc4py_stack/bin/nosetests -v;
fi

after_success:
- coveralls

notifications:
email: false

0 comments on commit e646b1a

Please sign in to comment.