aboutsummaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authorSebastian Thiel <byronimo@gmail.com>2015-01-03 14:34:39 +0100
committerSebastian Thiel <byronimo@gmail.com>2015-01-03 14:34:39 +0100
commitde9a6bb0c8931e7f74ea35edb372e5ca7d0a5047 (patch)
treec3a2d653fce535f6433c4f21d9c30f9f12df76d9 /.travis.yml
parent6becbaf35fa2f807837284d33649ba5376b3fe21 (diff)
downloadGitPython-de9a6bb0c8931e7f74ea35edb372e5ca7d0a5047.tar.gz
GitPython-de9a6bb0c8931e7f74ea35edb372e5ca7d0a5047.zip
Various fixes and improvements
* GIT_PYTHON_TRACE now behaves correctly for fetch, and pull (i.e. if as_process is used) * Improved parsing of fetch head information However, there is still a messy bit that tries to bring together fetch progress information with fetch head information. Even though it works now, an alternative implementation should be attempted.
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml9
1 files changed, 6 insertions, 3 deletions
diff --git a/.travis.yml b/.travis.yml
index 0a2906dc..dfeaad54 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -3,12 +3,15 @@ python:
- "2.6"
- "2.7"
# - "pypy" - won't work as smmap doesn't work (see gitdb/.travis.yml for details)
-
+git:
+ # a higher depth is needed for most of the tests - must be high enough to not actually be shallow
+ # as we clone our own repository in the process
+ depth: 99999
install:
- git submodule update --init --recursive
- git fetch --tags
- pip install coveralls
script:
- - nosetests --with-coverage
-# after_success: as long as we are not running smoothly ... give it the cover treatment every time
+ - nosetests -v --with-coverage
+after_success:
- coveralls