Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Ensure coverage installed for Docker builds #2846

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 13 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -28,14 +28,22 @@ pip-delete-this-directory.txt

# Unit test / coverage reports
htmlcov/
.eggs
.tox/
.coverage
.cache
nosetests.xml
coverage.xml
coverage.c.json
coverage.filtered.info
coverage.info

# Test files
test_images
Tests/images/msp
Tests/images/picins
Tests/images/README.md
Tests/images/sunraster

# Translations
*.mo
Expand All @@ -58,14 +66,16 @@ docs/_build/
# Vim cruft
.*.swp

#emacs
# emacs
*~
\#*#
.#*

#Komodo
# Komodo
*.komodoproject

#OS
# OS
.DS_Store

# IDE
.idea
3 changes: 2 additions & 1 deletion .travis/after_success.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,10 @@ lcov --remove coverage.info '/usr/*' -o coverage.filtered.info
gem install coveralls-lcov
coveralls-lcov -v -n coverage.filtered.info > coverage.c.json

coverage report
pip install coverage
pip install codecov
pip install coveralls-merge
coverage report
coveralls-merge coverage.c.json
codecov

Expand Down