summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Thiel <sthiel@thoughtworks.com>2016-10-10 10:16:35 +0200
committerSebastian Thiel <sthiel@thoughtworks.com>2016-10-10 10:18:23 +0200
commit955750852912f31b0c2a60597ef58443e7a78a30 (patch)
tree3f4e990af4a8923e5a6208b9e0a9ba27a70fde85
parente118818e61ec393451e9b597a10c645220484644 (diff)
downloadgitpython-flock.tar.gz
fix(travis): increase ulimitflock
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.yml2
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