diff options
author | Jeff Forcier <jeff@bitprophet.org> | 2014-09-08 15:01:18 -0700 |
---|---|---|
committer | Jeff Forcier <jeff@bitprophet.org> | 2014-09-08 15:03:12 -0700 |
commit | 68f7dbea29bb700caf5885ffe8af6bc7bd5ad92b (patch) | |
tree | 3fbee6b5c76ca2a38cb3abf527f6643a3cd6957c /.travis.yml | |
parent | 021160d8db62b8873f7deda3f7d89750941d2704 (diff) | |
parent | 88d932f2bbab907879639122969fb1f763258d29 (diff) |
Merge branch 'master' into 362-int
Conflicts:
tests/test_client.py
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/.travis.yml b/.travis.yml index 7042570f..3f6f7331 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,6 +4,7 @@ python: - "2.7" - "3.2" - "3.3" + - "3.4" install: # Self-install for setup.py-driven deps - pip install -e . @@ -17,8 +18,9 @@ script: # Run 'docs' first since its objects.inv is referred to by 'www'. # Also force warnings to be errors since most of them tend to be actual # problems. - - invoke docs -o -W - - invoke www -o -W + # Finally, skip them under Python 3.2 due to sphinx shenanigans + - "[[ $TRAVIS_PYTHON_VERSION != 3.2 ]] && invoke docs -o -W || true" + - "[[ $TRAVIS_PYTHON_VERSION != 3.2 ]] && invoke www -o -W || true" notifications: irc: channels: "irc.freenode.org#paramiko" @@ -26,7 +28,6 @@ notifications: - "%{repository}@%{branch}: %{message} (%{build_url})" on_success: change on_failure: change - use_notice: true email: false after_success: - coveralls |