--- pyruntest-0.1+13.10.20130702.orig/debian/changelog +++ pyruntest-0.1+13.10.20130702/debian/changelog @@ -0,0 +1,80 @@ +pyruntest (0.1+13.10.20130702-0ubuntu3) trusty; urgency=medium + + * Fix FTBFS (LP: #1270812): + + Pass "cover_pylib=True" to coverage, as it now defaults to not cover + modules installed in standard library. + + Add jquery build-dependencies for coverage to be able to produce + html coverage reports. + + -- Dimitri John Ledkov Sat, 15 Mar 2014 23:12:17 +0000 + +pyruntest (0.1+13.10.20130702-0ubuntu2) trusty; urgency=medium + + * Rebuild to drop files installed into /usr/share/pyshared. + + -- Matthias Klose Sun, 23 Feb 2014 13:50:44 +0000 + +pyruntest (0.1+13.10.20130702-0ubuntu1) saucy; urgency=low + + [ Timo Jyrinki ] + * Depend on python-testtools (LP: #1155232). (LP: #1155232) + + [ Ubuntu daily release ] + * Automatic snapshot from revision 17 + + -- Ubuntu daily release Tue, 02 Jul 2013 00:01:06 +0000 + +pyruntest (0.1daily13.06.12-0ubuntu1) saucy; urgency=low + + [ Michael Terry ] + * Run tests during build. (LP: #1188690) + + [ Ubuntu daily release ] + * Automatic snapshot from revision 15 + + -- Ubuntu daily release Wed, 12 Jun 2013 00:02:09 +0000 + +pyruntest (0.1daily13.06.05-0ubuntu1) saucy; urgency=low + + * Automatic snapshot from revision 13 + + -- Ubuntu daily release Wed, 05 Jun 2013 07:08:43 +0000 + +pyruntest (0.1daily13.05.03ubuntu.unity.next-0ubuntu1) raring; urgency=low + + * Automatic snapshot from revision 12 (ubuntu-unity/next) + + -- Ubuntu daily release Fri, 03 May 2013 00:00:52 +0000 + +pyruntest (0.1daily13.03.13.2-0ubuntu1) raring; urgency=low + + [ Martin Mrazik ] + * pyruntest combines stdout with xml (LP: #1154032) + + [ Ubuntu daily release ] + * Automatic snapshot from revision 11 + + -- Ubuntu daily release Wed, 13 Mar 2013 08:06:15 +0000 + +pyruntest (0.1daily12.11.29.2-0ubuntu1) raring; urgency=low + + [ Martin Mrasik ] + * Initial release + + [ Mathieu Trudel-Lapierre ] + * Automatic snapshot from revision 1 (bootstrap). + * debian/control: + - Update long/short descriptions for python-pyruntest. + - Wrap and update (Build-)Depends lists to use trailing commas. + - Add Vcs-Bzr, Vcs-Browser and add a notice to uploaders. + - Bump debhelper Build-Depends to (>= 9). + - Drop build-depends on python-support. + * debian/compat: bump to compat level 9. + * debian/source/format: migrate back to source format 1.0. + * debian/rules: + - Override dh_install to fail the build if files are missing. + + [ Automatic PS uploader ] + * Automatic snapshot from revision 9 + + -- Automatic PS uploader Thu, 29 Nov 2012 12:43:37 +0000 --- pyruntest-0.1+13.10.20130702.orig/debian/compat +++ pyruntest-0.1+13.10.20130702/debian/compat @@ -0,0 +1 @@ +9 --- pyruntest-0.1+13.10.20130702.orig/debian/control +++ pyruntest-0.1+13.10.20130702/debian/control @@ -0,0 +1,40 @@ +Source: pyruntest +Section: python +Priority: optional +Maintainer: Ubuntu Developers +XSBC-Original-Maintainer: Martin Mrazik +Build-Depends: debhelper (>= 9), + python (>=2.4), + python-coverage, + python-junitxml, + python-nose, + python-setuptools, + python-testtools, + libjs-jquery-hotkeys, + libjs-jquery-isonscreen, + libjs-jquery-tablesorter, + libjs-jquery, +Standards-Version: 3.9.2 +Homepage: https://launchpad.net +# If you aren't a member of ~autopilot but need to upload +# packaging changes, just go ahead. ~autopilot will notice +# and sync up the code again. +Vcs-Bzr: https://code.launchpad.net/~autopilot/pyruntest/trunk +Vcs-Browser: https://bazaar.launchpad.net/~autopilot/pyruntest/trunk/files + +Package: python-pyruntest +Architecture: all +Depends: python-testtools, + ${shlibs:Depends}, + ${misc:Depends}, + ${python:Depends}, +Description: Simple python test-runner + This simple test-runner is + * Simple to use (zero configuration). + * Can output a text report of test passes/failures. + * Can output a junitxml report of test passes/failures. + * Compatible with testtools and test scenarios + * Can run tests with coverage, and save coverage to: + - Cobertura-compatible XML. + - Human-viewable HTML. + - Human viewable Text. --- pyruntest-0.1+13.10.20130702.orig/debian/copyright +++ pyruntest-0.1+13.10.20130702/debian/copyright @@ -0,0 +1,24 @@ +Format: http://dep.debian.net/deps/dep5 +Upstream-Name: pyruntest +Source: https://launchpad.net/pyruntest + +Files: * +Copyright: 2010-2012 Canonical +License: GPL-3.0 + +License: GPL-3.0 + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, version 3 of the License. + . + This package is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + . + You should have received a copy of the GNU General Public License + along with this program. If not, see . + . + On Debian systems, the complete text of the GNU General + Public License version 3 can be found in "/usr/share/common-licenses/GPL-3". + --- pyruntest-0.1+13.10.20130702.orig/debian/rules +++ pyruntest-0.1+13.10.20130702/debian/rules @@ -0,0 +1,11 @@ +#!/usr/bin/make -f +# -*- makefile -*- + +%: + dh $@ --with python2 + +override_dh_install: + dh_install --fail-missing + +override_dh_auto_test: + nosetests --- pyruntest-0.1+13.10.20130702.orig/debian/source/format +++ pyruntest-0.1+13.10.20130702/debian/source/format @@ -0,0 +1 @@ +1.0 --- pyruntest-0.1+13.10.20130702.orig/pyruntest +++ pyruntest-0.1+13.10.20130702/pyruntest @@ -165,7 +165,7 @@ """A context manager that enables coverage collection.""" from coverage import coverage - cov = coverage(omit=exclude_list) + cov = coverage(omit=exclude_list,cover_pylib=True) cov.start() yield cov.stop()