aboutsummaryrefslogtreecommitdiffstats
path: root/.travis.yml
diff options
context:
space:
mode:
authorAdam Stokes <adam.stokes@ubuntu.com>2013-07-26 10:48:56 -0400
committerAdam Stokes <adam.stokes@ubuntu.com>2013-07-26 10:48:56 -0400
commitde0b58ac472837b2e75729e00827117072a83893 (patch)
tree465fafd9c76e8a6dcae9be4fb0b7801303a33521 /.travis.yml
parentf499e561043af2f801deb48fdc91d51a29ba22e8 (diff)
downloadsos-de0b58ac472837b2e75729e00827117072a83893.tar.gz
Add support for distutils
- We are planning on moving to python distutils for future packaging however, we still want to keep our current build infrastructure around until we are able to test the builds overtime. For now distutils will live alongside the current build process and slowly replace the Makefiles once deemed fit. Signed-off-by: Adam Stokes <adam.stokes@ubuntu.com>
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml8
1 files changed, 2 insertions, 6 deletions
diff --git a/.travis.yml b/.travis.yml
index 5b87103a..5ee289fc 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,18 +1,14 @@
language: python
python:
- 2.7
- - 3.2
- 3.3
- - "pypy"
matrix:
allow_failures:
- - python: 3.2
- python: 3.3
- - python: "pypy"
notifications:
email: false
install:
- "pip install nose nose-cov --use-mirrors"
- - "DESTDIR=. make install"
+ - "python setup.py install"
script:
- - "make test"
+ - "nosetests -v --with-cover --cover-package=sos --cover-html"