Skip to content

Commit

Permalink
coverage: ignore pure headers
Browse files Browse the repository at this point in the history
  • Loading branch information
Dane Springmeyer committed Mar 5, 2015
1 parent 82428a3 commit 50585b6
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Expand Up @@ -98,7 +98,7 @@ before_script:

script:
- node-pre-gyp package testpackage
- if [[ ${COVERAGE} == true ]]; then cpp-coveralls --exclude node_modules --exclude tests --build-root build --gcov-options '\-lp' --exclude tools --exclude docs --exclude sdk --exclude build/Release/obj/gen; fi;
- if [[ ${COVERAGE} == true ]]; then cpp-coveralls --exclude node_modules --exclude tests --build-root build --gcov-options '\-lp' --exclude tools --exclude docs --exclude sdk --exclude build/Release/obj/gen --exclude src/mapnik_featureset.hpp --exclude src/mapnik_logger.hpp --exclude src/mapnik_image_view.hpp --exclude src/mapnik_geometry.hpp; fi;
- if [[ ${PUBLISH_BINARY} == true ]]; then node-pre-gyp publish; fi;
- if [[ ${REPUBLISH_BINARY} == true ]]; then node-pre-gyp unpublish && node-pre-gyp publish; fi;
- if [[ ${PUBLISH_BINARY} == true ]] || [[ ${REPUBLISH_BINARY} == true ]]; then node-pre-gyp info; rm -rf {build,lib/binding}; node-pre-gyp install; npm test; fi
Expand Down
1 change: 0 additions & 1 deletion src/mapnik_image_view.hpp
Expand Up @@ -43,7 +43,6 @@ class ImageView: public node::ObjectWrap {
static NAN_METHOD(getPixel);

ImageView(Image * JSImage);
inline image_view_ptr get() { return this_; }

private:
~ImageView();
Expand Down

0 comments on commit 50585b6

Please sign in to comment.