From owner-svn-ports-all@FreeBSD.ORG Tue Jun 2 10:52:13 2015 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 96CF3A67; Tue, 2 Jun 2015 10:52:13 +0000 (UTC) (envelope-from koobs@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 77E631FD3; Tue, 2 Jun 2015 10:52:13 +0000 (UTC) (envelope-from koobs@FreeBSD.org) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t52AqDhJ037232; Tue, 2 Jun 2015 10:52:13 GMT (envelope-from koobs@FreeBSD.org) Received: (from koobs@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t52AqCm9037228; Tue, 2 Jun 2015 10:52:12 GMT (envelope-from koobs@FreeBSD.org) Message-Id: <201506021052.t52AqCm9037228@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: koobs set sender to koobs@FreeBSD.org using -f From: Kubilay Kocak Date: Tue, 2 Jun 2015 10:52:12 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r388321 - in head/devel: . py-pytest-capturelog X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 02 Jun 2015 10:52:13 -0000 Author: koobs Date: Tue Jun 2 10:52:11 2015 New Revision: 388321 URL: https://svnweb.freebsd.org/changeset/ports/388321 Log: [NEW] devel/py-pytest-capturelog: py.test plugin to capture log messages py.test plugin to capture log messages If the plugin is installed log messages are captured by default and for each failed test will be shown in the same manner as captured stdout and stderr. WWW: https://bitbucket.org/memedough/pytest-capturelog/overview Added: head/devel/py-pytest-capturelog/ head/devel/py-pytest-capturelog/Makefile (contents, props changed) head/devel/py-pytest-capturelog/distinfo (contents, props changed) head/devel/py-pytest-capturelog/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Tue Jun 2 10:32:04 2015 (r388320) +++ head/devel/Makefile Tue Jun 2 10:52:11 2015 (r388321) @@ -4040,6 +4040,7 @@ SUBDIR += py-pyshapelib SUBDIR += py-pytemplate SUBDIR += py-pytest + SUBDIR += py-pytest-capturelog SUBDIR += py-pytest-runner SUBDIR += py-pytest-timeout SUBDIR += py-python-jenkins Added: head/devel/py-pytest-capturelog/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-pytest-capturelog/Makefile Tue Jun 2 10:52:11 2015 (r388321) @@ -0,0 +1,20 @@ +# Created by: Kubilay Kocak +# $FreeBSD$ + +PORTNAME= pytest-capturelog +PORTVERSION= 0.7 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= koobs@FreeBSD.org +COMMENT= Py.test plugin to capture log messages + +LICENSE= MIT + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}py>=1.1.1:${PORTSDIR}/devel/py-py + +USES= python +USE_PYTHON= autoplist distutils + +.include Added: head/devel/py-pytest-capturelog/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-pytest-capturelog/distinfo Tue Jun 2 10:52:11 2015 (r388321) @@ -0,0 +1,2 @@ +SHA256 (pytest-capturelog-0.7.tar.gz) = b6e8d5189b39462109c2188e6b512d6cc7e66d62bb5be65389ed50e96d22000d +SIZE (pytest-capturelog-0.7.tar.gz) = 4293 Added: head/devel/py-pytest-capturelog/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-pytest-capturelog/pkg-descr Tue Jun 2 10:52:11 2015 (r388321) @@ -0,0 +1,6 @@ +py.test plugin to capture log messages + +If the plugin is installed log messages are captured by default and for each +failed test will be shown in the same manner as captured stdout and stderr. + +WWW: https://bitbucket.org/memedough/pytest-capturelog/overview