summaryrefslogtreecommitdiffhomepage
path: root/.travis.yml
diff options
context:
space:
mode:
authorJeff Forcier <jeff@bitprophet.org>2014-09-05 10:39:00 -0700
committerJeff Forcier <jeff@bitprophet.org>2014-09-05 10:39:00 -0700
commit0e0460f85942e79c94b7db9d93abdf60bf1dbac4 (patch)
tree152b80b4a2822abcb85136f7fbc7f9263279eb14 /.travis.yml
parent683b3c22893be899d2fdbf1ada35e61fba8a3d70 (diff)
parenteb7da84bee49f6e7b568ee00fd5f3db0bb29f36a (diff)
Merge branch 'master' into 131-int
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml22
1 files changed, 20 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml
index 6896b897..3cfef7cf 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,14 +1,32 @@
language: python
python:
- - "2.5"
- "2.6"
- "2.7"
+ - "3.2"
+ - "3.3"
+ - "3.4"
install:
# Self-install for setup.py-driven deps
- pip install -e .
-script: python test.py
+ # Dev (doc/test running) requirements
+ - pip install coveralls # For coveralls.io specifically
+ - pip install -r dev-requirements.txt
+script:
+ # Main tests, with coverage!
+ - invoke coverage
+ # 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"
+ template:
+ - "%{repository}@%{branch}: %{message} (%{build_url})"
on_success: change
on_failure: change
+ email: false
+after_success:
+ - coveralls