summaryrefslogtreecommitdiffhomepage
path: root/.travis.yml
diff options
context:
space:
mode:
authorJeff Forcier <jeff@bitprophet.org>2014-01-30 10:57:50 -0800
committerJeff Forcier <jeff@bitprophet.org>2014-01-30 10:57:50 -0800
commit0d6bf1d9656dc3d15f76169d584268de999b9791 (patch)
treef7c35ed962fd29727fbe304820b488913a77d47f /.travis.yml
parent94580cebee300b02c3e798830396d5b4f0cc6b24 (diff)
parentc4276679284649f62b646a057f9ca50f0c644a2d (diff)
Merge branch '1.12'
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml14
1 files changed, 12 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml
index c9802a80..df7c225a 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -5,8 +5,18 @@ python:
install:
# Self-install for setup.py-driven deps
- pip install -e .
- - pip install coveralls
-script: coverage run --source=paramiko test.py --verbose
+ # Dev (doc/test running) requirements
+ - pip install coveralls # For coveralls.io specifically
+ - pip install -r dev-requirements.txt
+script:
+ # Main tests, with coverage!
+ - coverage run --source=paramiko test.py --verbose
+ # 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"