diff options
author | Jeff Forcier <jeff@bitprophet.org> | 2014-09-05 11:40:14 -0700 |
---|---|---|
committer | Jeff Forcier <jeff@bitprophet.org> | 2014-09-05 11:40:14 -0700 |
commit | 07d9fc7e1c3a8bbb6ff6ad8337417e09a7f5f473 (patch) | |
tree | 135ffc01c24e46e02efa3eb111472386ad00064c | |
parent | eb7da84bee49f6e7b568ee00fd5f3db0bb29f36a (diff) | |
parent | 9f75ad53bfc11b6a6d1c589452475c3ba6735d60 (diff) |
Merge branch '1.14'
-rw-r--r-- | .travis.yml | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml index 3cfef7cf..3f6f7331 100644 --- a/.travis.yml +++ b/.travis.yml @@ -18,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" |