Received: from mail.netbsd.org (mail.netbsd.org [149.20.53.66]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mail.netbsd.org", Issuer "Postmaster NetBSD.org" (verified OK)) by mollari.NetBSD.org (Postfix) with ESMTPS id BA07FA5809 for ; Sat, 13 Dec 2014 08:43:45 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 6399B14A236; Sat, 13 Dec 2014 08:43:45 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 809A014A235 for ; Sat, 13 Dec 2014 08:43:38 +0000 (UTC) X-Virus-Scanned: amavisd-new at NetBSD.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.NetBSD.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id m5tBHbOtyXHJ for ; Sat, 13 Dec 2014 08:43:37 +0000 (UTC) Received: from cvs.netbsd.org (cvs.NetBSD.org [IPv6:2001:4f8:3:7:2e0:81ff:fe30:95bd]) by mail.netbsd.org (Postfix) with ESMTP id C17A014A223 for ; Sat, 13 Dec 2014 08:43:37 +0000 (UTC) Received: by cvs.netbsd.org (Postfix, from userid 500) id AF40198; Sat, 13 Dec 2014 08:43:37 +0000 (UTC) Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" MIME-Version: 1.0 Date: Sat, 13 Dec 2014 08:43:37 +0000 From: "OBATA Akio" Subject: CVS commit: pkgsrc/devel/py-testtools To: pkgsrc-changes@NetBSD.org Reply-To: obache@netbsd.org X-Mailer: log_accum Message-Id: <20141213084337.AF40198@cvs.netbsd.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk Module Name: pkgsrc Committed By: obache Date: Sat Dec 13 08:43:37 UTC 2014 Modified Files: pkgsrc/devel/py-testtools: Makefile distinfo Log Message: Update py-testtools to 1.5.0. 1.5.0 ~~~~~ Improvements ------------ * When an import error happens ``testtools.run`` will now show the full error rather than just the name of the module that failed to import. (Robert Collins) 1.4.0 ~~~~~ Changes ------- * ``testtools.TestCase`` now inherits from unittest2.TestCase, which provides a ``setUpClass`` for upcalls on Python 2.6. (Robert Collins, #1393283) 1.3.0 ~~~~~ Changes ------- * Fixed our setup.py to use setup_requires to ensure the import dependencies for testtools are present before setup.py runs (as setup.py imports testtools to read out the version number). (Robert Collins) * Support setUpClass skipping with self.skipException. Previously this worked with unittest from 2.7 and above but was not supported by testtools - it was a happy accident. Since we now hard depend on unittest2, we need to invert our exception lookup priorities to support it. Regular skips done through raise self.skipException will continue to work, since they were always caught in our code - its because the suite type being used to implement setUpClass has changed that an issue occured. (Robert Collins, #1393068) 1.2.1 ~~~~~ Changes ------- * Correctly express our unittest2 dependency: we don't work with old releases. (Robert Collins) 1.2.0 ~~~~~ Changes ------- * Depends on unittest2 for discovery functionality and the ``TestProgram`` base class. This brings in many fixes made to discovery where previously we were only using the discovery package or the version in the release of Python that the test execution was occuring on. (Robert Collins, #1271133) * Fixed unit tests which were failing under pypy due to a change in the way pypy formats tracebacks. (Thomi Richards) * Fixed the testtools test suite to run correctly when run via ``unit2`` or ``testtools.run discover``. * Make `testtools.content.text_content` error if anything other than text is given as content. (Thomi Richards) * We now publish wheels of testtools. (Robert Collins, #issue84) 1.1.0 ~~~~~ Improvements ------------ * Exceptions in a ``fixture.getDetails`` method will no longer mask errors raised from the same fixture's ``setUp`` method. (Robert Collins, #1368440) To generate a diff of this commit: cvs rdiff -u -r1.12 -r1.13 pkgsrc/devel/py-testtools/Makefile cvs rdiff -u -r1.8 -r1.9 pkgsrc/devel/py-testtools/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.