diff options
author | Sebastian Thiel <sthiel@thoughtworks.com> | 2016-10-10 10:16:35 +0200 |
---|---|---|
committer | Kostis Anagnostopoulos <ankostis@gmail.com> | 2016-10-11 18:04:17 +0200 |
commit | aafde7d5a8046dc718843ca4b103fcb8a790332c (patch) | |
tree | 9b04774b9530781c32219eba83b8c749f0cf10ce | |
parent | e355275c57812af0f4c795f229382afdda4bca86 (diff) | |
download | gitpython-aafde7d5a8046dc718843ca4b103fcb8a790332c.tar.gz |
fix(travis): increase ulimit
Now that performance tests are run, it appears we run into one
particular failure on travis, possibly indicating a bug in python 3.3.
Just bluntly increason the amount of handles might silence it... .
Related to #524
-rw-r--r-- | .travis.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index 2d676405..2691d87c 100644 --- a/.travis.yml +++ b/.travis.yml @@ -29,7 +29,7 @@ install: - cat git/test/fixtures/.gitconfig >> ~/.gitconfig script: # Make sure we limit open handles to see if we are leaking them - - ulimit -n 110 + - ulimit -n 128 - ulimit -n - nosetests -v --with-coverage - if [ "$TRAVIS_PYTHON_VERSION" == '3.4' ]; then flake8; fi |