aboutsummaryrefslogtreecommitdiffstats
path: root/.travis.yml
blob: 0f923c6988c940a328b69df6414f327c9abde3a6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
language: python
python:
  - 2.7
  - 3.3
matrix:
  allow_failures:
    - python: 3.3
notifications:
  email: false
  irc:
    channels:
      - "us.freenode.net#sosreport"
    on_success: change
install:
  - "pip install nose nose-cov --use-mirrors"
  - "python setup.py install"
script:
  - "nosetests -v --with-cover --cover-package=sos --cover-html"