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

Integrating Coverage.py with cesium #211

Merged
merged 14 commits into from
Nov 14, 2016
12 changes: 12 additions & 0 deletions .coveragerc
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# Configuration for coverage.py

[run]
branch = True
source = cesium
include = */cesium/*

[report]
exclude_lines =
def __repr__
if __name__ == .__main__.:
show_missing = True
4 changes: 3 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -93,4 +93,6 @@ install:

script: .drone/travis_script.sh

after_success: .drone/deploy_docs.sh
after_success:
- .drone/deploy_docs.sh
- codecov
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Look at deploy_docs.sh to see how to only run this on one Python version

1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,4 @@ xarray>=0.8.1
gatspy>=0.3.0
netCDF4
cloudpickle
coverage