1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-22 08:58:47 +00:00

A Python module for creating JUnit XML test result documents that can be read

by tools such as Jenkins. If you are ever working with test tool or test suite
written in Python and want to take advantage of Jenkins' pretty graphs and test
reporting capabilities, this module will let you generate the XML test reports.

WWW: https://github.com/kyrus/python-junit-xml
This commit is contained in:
Steven Kreuzer 2014-07-21 20:36:56 +00:00
parent addcde9e00
commit 84eaa037b7
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=362482
4 changed files with 28 additions and 0 deletions

View File

@ -1159,6 +1159,7 @@
SUBDIR += py-html2text
SUBDIR += py-hyperestraier-python
SUBDIR += py-jaxml
SUBDIR += py-junit-xml
SUBDIR += py-libtre
SUBDIR += py-libxml2
SUBDIR += py-libxslt

View File

@ -0,0 +1,19 @@
# $FreeBSD$
PORTNAME= junit-xml
PORTVERSION= 1.3
CATEGORIES= devel python
MASTER_SITES= CHEESESHOP
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
MAINTAINER= skreuzer@FreeBSD.org
COMMENT= Creates JUnit XML documents used by tools such as Jenkins
LICENSE= MIT
LICENSE_FILE= ${WRKSRC}/LICENSE.txt
USE_PYTHON= yes
USE_PYDISTUTILS= yes
PYDISTUTILS_AUTOPLIST= yes
.include <bsd.port.mk>

View File

@ -0,0 +1,2 @@
SHA256 (junit-xml-1.3.tar.gz) = 2f7110f3926744fe8e37d11dabe3fc47c0b0f92efec3f0a1a087e1be954bc164
SIZE (junit-xml-1.3.tar.gz) = 7014

View File

@ -0,0 +1,6 @@
A Python module for creating JUnit XML test result documents that can be read
by tools such as Jenkins. If you are ever working with test tool or test suite
written in Python and want to take advantage of Jenkins' pretty graphs and test
reporting capabilities, this module will let you generate the XML test reports.
WWW: https://github.com/kyrus/python-junit-xml