aboutsummaryrefslogtreecommitdiffstats
path: root/.travis.yml
blob: 5ee289fc717f23281b96ded9dd81086d745223e1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
language: python
python:
  - 2.7
  - 3.3
matrix:
  allow_failures:
    - python: 3.3
notifications:
  email: false
install:
  - "pip install nose nose-cov --use-mirrors"
  - "python setup.py install"
script:
  - "nosetests -v --with-cover --cover-package=sos --cover-html"