diff options
| author | Sebastian Thiel <byronimo@gmail.com> | 2015-01-07 20:00:06 +0100 |
|---|---|---|
| committer | Sebastian Thiel <byronimo@gmail.com> | 2015-01-07 20:00:21 +0100 |
| commit | 36cdfd3209909163549850709d7f12fdf1316434 (patch) | |
| tree | 4aa624df4eb2b345e594764139fa264a486e437d /.travis.yml | |
| parent | f4a49ff2dddc66bbe25af554caba2351fbf21702 (diff) | |
| download | GitPython-36cdfd3209909163549850709d7f12fdf1316434.tar.gz GitPython-36cdfd3209909163549850709d7f12fdf1316434.zip | |
Made improvements to assure test-cases don't leak file handles
At least leakage is considerably reduced.
Additionally, a test-case was added which triggers failure if auto-disposal
of resources wouldn't work.
Fixes #60
Diffstat (limited to '.travis.yml')
| -rw-r--r-- | .travis.yml | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml index 4f77dbca..112df6cf 100644 --- a/.travis.yml +++ b/.travis.yml @@ -25,6 +25,9 @@ install: - git config --global user.email "travis@ci.com" - git config --global user.name "Travis Runner" script: + # Make sure we limit open handles to see if we are leaking them + - ulimit -n 64 + - ulimit -n - nosetests -v --with-coverage - flake8 after_success: |
