aboutsummaryrefslogtreecommitdiffstats
path: root/.travis.yml
diff options
context:
space:
mode:
authorAdam Stokes <adam.stokes@ubuntu.com>2013-10-30 22:21:56 -0400
committerAdam Stokes <adam.stokes@ubuntu.com>2013-10-30 22:21:56 -0400
commitac42065e19444d671c7bcc83cca80f2ecff0596c (patch)
tree774009d13ad835163a8bca0b8e9ed9d6cde74760 /.travis.yml
parentcd99ebea74a606fe037580eead2702f4c2dd7c65 (diff)
downloadsos-ac42065e19444d671c7bcc83cca80f2ecff0596c.tar.gz
Update CI spec
Remove allow failures for python 3.3 as all tests should now pass going forward. Also install six via pip for unittests on travis-ci Signed-off-by: Adam Stokes <adam.stokes@ubuntu.com>
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml5
1 files changed, 1 insertions, 4 deletions
diff --git a/.travis.yml b/.travis.yml
index 0f923c69..d8eb1624 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -2,9 +2,6 @@ language: python
python:
- 2.7
- 3.3
-matrix:
- allow_failures:
- - python: 3.3
notifications:
email: false
irc:
@@ -12,7 +9,7 @@ notifications:
- "us.freenode.net#sosreport"
on_success: change
install:
- - "pip install nose nose-cov --use-mirrors"
+ - "pip install six nose nose-cov --use-mirrors"
- "python setup.py install"
script:
- "nosetests -v --with-cover --cover-package=sos --cover-html"