From 955750852912f31b0c2a60597ef58443e7a78a30 Mon Sep 17 00:00:00 2001 From: Sebastian Thiel Date: Mon, 10 Oct 2016 10:16:35 +0200 Subject: 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 --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- cgit v1.2.1