diff options
author | Kostis Anagnostopoulos <ankostis@gmail.com> | 2016-09-26 11:08:57 +0200 |
---|---|---|
committer | Kostis Anagnostopoulos <ankostis@gmail.com> | 2016-09-26 20:20:58 +0200 |
commit | fa70623a651d2a0b227202cad1e526e3eeebfa00 (patch) | |
tree | 0fdb7195e73f8e26baa155f1651e5303dcb41877 /.travis.yml | |
parent | 7ec2f8a4f26cec3fbbe1fb447058acaf508b39c0 (diff) | |
download | gitpython-fa70623a651d2a0b227202cad1e526e3eeebfa00.tar.gz |
test, #519: FIX appveyor conda & failures in py2.6 `assertRaisesRegexp`
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml index 31f2c00c..0214a73b 100644 --- a/.travis.yml +++ b/.travis.yml @@ -32,7 +32,8 @@ script: - ulimit -n 96 - ulimit -n - nosetests -v --with-coverage - - flake8 - - cd doc && make html + - if [ "$TRAVIS_PYTHON_VERSION" != '2.6' ]; then flake8; fi + - if [ "$TRAVIS_PYTHON_VERSION" != '2.6' ]; then cd doc && make html; fi + - after_success: - coveralls |