diff options
author | Jeff Forcier <jeff@bitprophet.org> | 2014-09-05 11:40:12 -0700 |
---|---|---|
committer | Jeff Forcier <jeff@bitprophet.org> | 2014-09-05 11:40:12 -0700 |
commit | 4aa798ef21dc643a271e4ff5581ddf7cbde4c144 (patch) | |
tree | 5c0bae54b76e920e290cc7fac3dbf993b4f3e0f8 | |
parent | 43c5cdaa3094c59718c8df69b1de834aee15485c (diff) |
Try skipping docs builds under Python 3.2
-rw-r--r-- | .travis.yml | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml index 801356e0..e17bdafd 100644 --- a/.travis.yml +++ b/.travis.yml @@ -17,8 +17,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" |