blob: 6d6b57442cf38b7caa9e820f602369a1f56b64d7 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
language: python
python:
- 2.7
- 3.4
- 3.5
- "nightly"
matrix:
allow_failures:
- python: 3.5
- python: "nightly"
sudo: false
notifications:
email:
sos-devel@redhat.com
irc:
channels:
- "us.freenode.net#sosreport"
on_success: change
install:
- "pip install six nose nose-cov pep8 --use-mirrors"
- "python setup.py install"
script:
- "pep8 sos"
- "nosetests -v --with-cover --cover-package=sos --cover-html"
|