aboutsummaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authorJeremy T. Bouse <jbouse@debian.org>2014-02-14 21:29:58 -0500
committerJeremy T. Bouse <jbouse@debian.org>2014-02-14 21:29:58 -0500
commit3bb46c9cb414ca82afab715d2d0cc00ed71cfb6d (patch)
tree968464cb0214980291af70f9d1756d907b35aa6c /.travis.yml
parent1a716ed46d1d556d4ba6798608ab498320acd886 (diff)
downloadpython-paramiko-3bb46c9cb414ca82afab715d2d0cc00ed71cfb6d.tar
python-paramiko-3bb46c9cb414ca82afab715d2d0cc00ed71cfb6d.tar.gz
Imported Upstream version 1.12.2upstream/1.12.2
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml20
1 files changed, 18 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml
index 6896b89..97165c4 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,14 +1,30 @@
language: python
python:
- - "2.5"
- "2.6"
- "2.7"
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
+ use_notice: true
+ email: false
+after_success:
+ - coveralls