summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKostis Anagnostopoulos <ankostis@gmail.com>2016-10-03 01:01:00 +0200
committerKostis Anagnostopoulos <ankostis@gmail.com>2016-10-03 03:01:31 +0200
commit06b16115bee85d7dd12a51c7476b0655068a970c (patch)
tree8fd1e6233866d3ec29e66e8b0e3cbb7df3acc980
parent3dc2f7358be152d8e87849ad6606461fb2a4dfd0 (diff)
downloadgitpython-06b16115bee85d7dd12a51c7476b0655068a970c.tar.gz
ci: restore verbosity for travis/appveyor, increase 96->100 ulimit
+ PY3.3 fails due to 'too many files open"
-rw-r--r--.appveyor.yml2
-rw-r--r--.travis.yml4
2 files changed, 3 insertions, 3 deletions
diff --git a/.appveyor.yml b/.appveyor.yml
index df957c20..9b87d962 100644
--- a/.appveyor.yml
+++ b/.appveyor.yml
@@ -78,7 +78,7 @@ install:
build: false
test_script:
- - nosetests --with-coverage
+ - nosetests -v --with-coverage
#on_success:
# - IF "%PYTHON_VERSION%"=="3.4" (coveralls)
diff --git a/.travis.yml b/.travis.yml
index ab766e7c..7b72e007 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -29,9 +29,9 @@ install:
- cat git/test/fixtures/.gitconfig >> ~/.gitconfig
script:
# Make sure we limit open handles to see if we are leaking them
- - ulimit -n 96
+ - ulimit -n 100
- ulimit -n
- - nosetests --with-coverage
+ - nosetests -v --with-coverage
- if [ "$TRAVIS_PYTHON_VERSION" == '3.4' ]; then flake8; fi
- if [ "$TRAVIS_PYTHON_VERSION" == '3.5' ]; then cd doc && make html; fi
-