Date: Sun, 20 Oct 2019 17:07:16 +0000 (UTC) From: Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r514893 - in head/devel: . py-pytest-azurepipelines Message-ID: <201910201707.x9KH7GYb059911@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: sunpoet Date: Sun Oct 20 17:07:16 2019 New Revision: 514893 URL: https://svnweb.freebsd.org/changeset/ports/514893 Log: Add py-pytest-azurepipelines 0.8.0 Make pytest easier to use with Microsoft Azure Pipelines. Just run pytest with this plugin and see your test results in the Azure Pipelines UI! Features: - Formats the PyTest output to show test docstrings and module names instead of just test case names in the Azure Pipelines UI. - Uploads test results automatically, no need for a separate test results upload command - Displays the number of failed tests if there were failures as an error message in the UI - Automatically formats code coverage and uploads coverage data if pytest-cov is installed - Supports running inside a Docker container and automatically uploads test results WWW: https://github.com/tonybaloney/pytest-azurepipelines Added: head/devel/py-pytest-azurepipelines/ head/devel/py-pytest-azurepipelines/Makefile (contents, props changed) head/devel/py-pytest-azurepipelines/distinfo (contents, props changed) head/devel/py-pytest-azurepipelines/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Sun Oct 20 14:10:03 2019 (r514892) +++ head/devel/Makefile Sun Oct 20 17:07:16 2019 (r514893) @@ -4889,6 +4889,7 @@ SUBDIR += py-pytest SUBDIR += py-pytest-aiohttp SUBDIR += py-pytest-asyncio + SUBDIR += py-pytest-azurepipelines SUBDIR += py-pytest-cache SUBDIR += py-pytest-capturelog SUBDIR += py-pytest-cov Added: head/devel/py-pytest-azurepipelines/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-pytest-azurepipelines/Makefile Sun Oct 20 17:07:16 2019 (r514893) @@ -0,0 +1,23 @@ +# Created by: Po-Chuan Hsieh <sunpoet@FreeBSD.org> +# $FreeBSD$ + +PORTNAME= pytest-azurepipelines +PORTVERSION= 0.8.0 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= Formatting PyTest output for Azure Pipelines UI + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pytest>=3.5.0:devel/py-pytest@${PY_FLAVOR} + +USES= python +USE_PYTHON= autoplist concurrent distutils + +NO_ARCH= yes + +.include <bsd.port.mk> Added: head/devel/py-pytest-azurepipelines/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-pytest-azurepipelines/distinfo Sun Oct 20 17:07:16 2019 (r514893) @@ -0,0 +1,3 @@ +TIMESTAMP = 1571483779 +SHA256 (pytest-azurepipelines-0.8.0.tar.gz) = 944ae2c0790b792d123aa7312fe307bc35214dd26531728923ae5085a1d1feab +SIZE (pytest-azurepipelines-0.8.0.tar.gz) = 6014 Added: head/devel/py-pytest-azurepipelines/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-pytest-azurepipelines/pkg-descr Sun Oct 20 17:07:16 2019 (r514893) @@ -0,0 +1,16 @@ +Make pytest easier to use with Microsoft Azure Pipelines. Just run pytest with +this plugin and see your test results in the Azure Pipelines UI! + +Features: +- Formats the PyTest output to show test docstrings and module names instead of + just test case names in the Azure Pipelines UI. +- Uploads test results automatically, no need for a separate test results upload + command +- Displays the number of failed tests if there were failures as an error message + in the UI +- Automatically formats code coverage and uploads coverage data if pytest-cov is + installed +- Supports running inside a Docker container and automatically uploads test + results + +WWW: https://github.com/tonybaloney/pytest-azurepipelines
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201910201707.x9KH7GYb059911>