diff options
author | Sebastian Thiel <byronimo@gmail.com> | 2014-05-04 17:01:59 +0200 |
---|---|---|
committer | Sebastian Thiel <byronimo@gmail.com> | 2014-05-04 17:01:59 +0200 |
commit | 3b9b6fe0dd99803c80a3a3c52f003614ad3e0adf (patch) | |
tree | 3332e3bc93920c83418e9ca150d2508e47b82d31 | |
parent | cc93c4f3ddade455cc4f55bc93167b1d2aeddc4f (diff) | |
download | gitpython-3b9b6fe0dd99803c80a3a3c52f003614ad3e0adf.tar.gz |
Let's see if recursive checkouts will fix 'gitdb not found' issue for travis.
If not, pip install should do the job
-rw-r--r-- | .travis.yml | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index 6d91c8b6..48c05b7a 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,4 +4,7 @@ python: - "2.7" # - "pypy" - won't work as smmap doesn't work (see gitdb/.travis.yml for details) -script: nosetests +install: + - git submodule update --init --recursive +script: + - nosetests |