From de0b58ac472837b2e75729e00827117072a83893 Mon Sep 17 00:00:00 2001 From: Adam Stokes Date: Fri, 26 Jul 2013 10:48:56 -0400 Subject: 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 --- .travis.yml | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) (limited to '.travis.yml') 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" -- cgit