From nobody Fri Oct 08 20:42:38 2021 X-Original-To: dev-commits-ports-main@mlmmj.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mlmmj.nyi.freebsd.org (Postfix) with ESMTP id 5B13217E586E; Fri, 8 Oct 2021 20:42:41 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4HR0W317hTz3rNv; Fri, 8 Oct 2021 20:42:38 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org (gitrepo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:5]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id A5D5C5CC7; Fri, 8 Oct 2021 20:42:38 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org ([127.0.1.44]) by gitrepo.freebsd.org (8.16.1/8.16.1) with ESMTP id 198Kgciu074988; Fri, 8 Oct 2021 20:42:38 GMT (envelope-from git@gitrepo.freebsd.org) Received: (from git@localhost) by gitrepo.freebsd.org (8.16.1/8.16.1/Submit) id 198KgcwC074987; Fri, 8 Oct 2021 20:42:38 GMT (envelope-from git) Date: Fri, 8 Oct 2021 20:42:38 GMT Message-Id: <202110082042.198KgcwC074987@gitrepo.freebsd.org> To: ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org From: Dmitry Marakasov Subject: git: daa2668737b1 - main - devel/py-pytest-canonical-data: add port List-Id: Commits to the main branch of the FreeBSD ports repository List-Archive: https://lists.freebsd.org/archives/dev-commits-ports-main List-Help: List-Post: List-Subscribe: List-Unsubscribe: Sender: owner-dev-commits-ports-main@freebsd.org X-BeenThere: dev-commits-ports-main@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Git-Committer: amdmi3 X-Git-Repository: ports X-Git-Refname: refs/heads/main X-Git-Reftype: branch X-Git-Commit: daa2668737b1f69f13de06e76014585c9a4c68a5 Auto-Submitted: auto-generated X-ThisMailContainsUnwantedMimeParts: N The branch main has been updated by amdmi3: URL: https://cgit.FreeBSD.org/ports/commit/?id=daa2668737b1f69f13de06e76014585c9a4c68a5 commit daa2668737b1f69f13de06e76014585c9a4c68a5 Author: Dmitry Marakasov AuthorDate: 2021-10-07 14:40:11 +0000 Commit: Dmitry Marakasov CommitDate: 2021-10-08 20:35:48 +0000 devel/py-pytest-canonical-data: add port A plugin which allows to compare results with canonical results, based on previous runs. Inspired by Yandex's canondata plugin, pytest-needle and pytest-regtest. WWW: https://pypi.org/project/pytest-canonical-data/ WWW: https://github.com/shuternay/pytest-canonical-data --- devel/Makefile | 1 + devel/py-pytest-canonical-data/Makefile | 19 +++++++++++++++++++ devel/py-pytest-canonical-data/distinfo | 3 +++ devel/py-pytest-canonical-data/pkg-descr | 8 ++++++++ 4 files changed, 31 insertions(+) diff --git a/devel/Makefile b/devel/Makefile index 687207541f03..d21fd12b32e0 100644 --- a/devel/Makefile +++ b/devel/Makefile @@ -5007,6 +5007,7 @@ SUBDIR += py-pytest-black SUBDIR += py-pytest-black-multipy SUBDIR += py-pytest-cache + SUBDIR += py-pytest-canonical-data SUBDIR += py-pytest-capturelog SUBDIR += py-pytest-checkdocs SUBDIR += py-pytest-cov diff --git a/devel/py-pytest-canonical-data/Makefile b/devel/py-pytest-canonical-data/Makefile new file mode 100644 index 000000000000..27ebbef644c4 --- /dev/null +++ b/devel/py-pytest-canonical-data/Makefile @@ -0,0 +1,19 @@ +PORTNAME= pytest-canonical-data +PORTVERSION= 0.1.0 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= amdmi3@FreeBSD.org +COMMENT= Plugin which compares results with canonical ones from previous runs + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pytest>=0:devel/py-pytest@${PY_FLAVOR} + +USES= python:3.5+ +USE_PYTHON= autoplist distutils +NO_ARCH= yes + +.include diff --git a/devel/py-pytest-canonical-data/distinfo b/devel/py-pytest-canonical-data/distinfo new file mode 100644 index 000000000000..1d586e6039f6 --- /dev/null +++ b/devel/py-pytest-canonical-data/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1633553084 +SHA256 (pytest-canonical-data-0.1.0.tar.gz) = ddabcfbd3e7dbfd929db7286c7fb708943bf68b5d8c92d6034423d14d17c380a +SIZE (pytest-canonical-data-0.1.0.tar.gz) = 5372 diff --git a/devel/py-pytest-canonical-data/pkg-descr b/devel/py-pytest-canonical-data/pkg-descr new file mode 100644 index 000000000000..db9271788458 --- /dev/null +++ b/devel/py-pytest-canonical-data/pkg-descr @@ -0,0 +1,8 @@ +A plugin which allows to compare results with canonical results, +based on previous runs. + +Inspired by Yandex's canondata plugin, pytest-needle and +pytest-regtest. + +WWW: https://pypi.org/project/pytest-canonical-data/ +WWW: https://github.com/shuternay/pytest-canonical-data