diff options
-rw-r--r-- | .coveragerc | 10 | ||||
-rw-r--r-- | .gitignore | 2 | ||||
-rw-r--r-- | .travis.yml | 5 | ||||
-rw-r--r-- | README.md | 1 |
4 files changed, 17 insertions, 1 deletions
diff --git a/.coveragerc b/.coveragerc new file mode 100644 index 00000000..410ffc52 --- /dev/null +++ b/.coveragerc @@ -0,0 +1,10 @@ +[run] +source = git + +; to make nosetests happy +[report] +omit = + */yaml* + */tests/* + */python?.?/* + */site-packages/nose/*
\ No newline at end of file @@ -2,6 +2,8 @@ *.swp *~ /lib/GitPython.egg-info +cover/ +.coverage /build /dist /doc/_build diff --git a/.travis.yml b/.travis.yml index 2a56becc..0a2906dc 100644 --- a/.travis.yml +++ b/.travis.yml @@ -7,5 +7,8 @@ python: install: - git submodule update --init --recursive - git fetch --tags + - pip install coveralls script: - - nosetests + - nosetests --with-coverage +# after_success: as long as we are not running smoothly ... give it the cover treatment every time + - coveralls @@ -31,6 +31,7 @@ A distribution package can be obtained for manual installation at: ### DEVELOPMENT STATUS [](https://travis-ci.org/gitpython-developers/GitPython) +[](https://coveralls.io/r/gitpython-developers/GitPython) The project was idle for 2 years, the last release was made about 3 years ago. Reason for this might have been the project's dependency on me as sole active maintainer, which is an issue in itself. |