diff options
author | Jeff Forcier <jeff@bitprophet.org> | 2014-01-28 15:53:26 -0800 |
---|---|---|
committer | Jeff Forcier <jeff@bitprophet.org> | 2014-01-28 15:53:30 -0800 |
commit | d1d65b4ddde17a97d25a79aeaad6c3068846cb36 (patch) | |
tree | 04392fb0d20c9b0625e23c2c75be1881196b9a03 /.travis.yml | |
parent | fee04a39ec45baefff84c8a58540fa3401b4a826 (diff) |
Stricter/more useful doc builds in Travis
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/.travis.yml b/.travis.yml index 98a54829..df7c225a 100644 --- a/.travis.yml +++ b/.travis.yml @@ -11,9 +11,12 @@ install: script: # Main tests, with coverage! - coverage run --source=paramiko test.py --verbose - # Ensure documentation & invoke pipeline run OK - - invoke www - - invoke docs + # Ensure documentation & invoke pipeline run OK. + # 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 notifications: irc: channels: "irc.freenode.org#paramiko" |