From owner-svn-ports-head@freebsd.org Tue Jul 21 02:29:46 2020 Return-Path: Delivered-To: svn-ports-head@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id CFA53372B64; Tue, 21 Jul 2020 02:29:46 +0000 (UTC) (envelope-from swills@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 "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4B9jGy58H6z3ggR; Tue, 21 Jul 2020 02:29:46 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 7AA8B17125; Tue, 21 Jul 2020 02:29:46 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 06L2Tk7Y065482; Tue, 21 Jul 2020 02:29:46 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 06L2Tjvo065478; Tue, 21 Jul 2020 02:29:45 GMT (envelope-from swills@FreeBSD.org) Message-Id: <202007210229.06L2Tjvo065478@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Tue, 21 Jul 2020 02:29:45 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r542707 - in head/devel: . py-pytest-randomly X-SVN-Group: ports-head X-SVN-Commit-Author: swills X-SVN-Commit-Paths: in head/devel: . py-pytest-randomly X-SVN-Commit-Revision: 542707 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.33 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 21 Jul 2020 02:29:46 -0000 Author: swills Date: Tue Jul 21 02:29:45 2020 New Revision: 542707 URL: https://svnweb.freebsd.org/changeset/ports/542707 Log: devel/py-pytest-randomly: create port Pytest plugin to randomly order tests and control random.seed. (Also available for nose). WWW: https://github.com/pytest-dev/pytest-randomly Added: head/devel/py-pytest-randomly/ head/devel/py-pytest-randomly/Makefile (contents, props changed) head/devel/py-pytest-randomly/distinfo (contents, props changed) head/devel/py-pytest-randomly/pkg-descr (contents, props changed) Modified: head/devel/Makefile (contents, props changed) Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Tue Jul 21 02:29:12 2020 (r542706) +++ head/devel/Makefile Tue Jul 21 02:29:45 2020 (r542707) @@ -4933,6 +4933,7 @@ SUBDIR += py-pytest-mock SUBDIR += py-pytest-pep8 SUBDIR += py-pytest-pycodestyle + SUBDIR += py-pytest-randomly SUBDIR += py-pytest-relaxed SUBDIR += py-pytest-rerunfailures SUBDIR += py-pytest-runner Added: head/devel/py-pytest-randomly/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-pytest-randomly/Makefile Tue Jul 21 02:29:45 2020 (r542707) @@ -0,0 +1,21 @@ +# $FreeBSD$ + +PORTNAME= pytest-randomly +PORTVERSION= 3.4.1 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= swills@FreeBSD.org +COMMENT= Pytest plugin to randomly order tests and control random.seed + +LICENSE= BSD3CLAUSE +LICENSE_FILE= ${WRKSRC}/LICENSE + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}importlib-metadata>0:devel/py-importlib-metadata@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}pytest>0:devel/py-pytest@${PY_FLAVOR} + +USES= python:3.6+ +USE_PYTHON= autoplist distutils + +.include Added: head/devel/py-pytest-randomly/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-pytest-randomly/distinfo Tue Jul 21 02:29:45 2020 (r542707) @@ -0,0 +1,3 @@ +TIMESTAMP = 1595297035 +SHA256 (pytest-randomly-3.4.1.tar.gz) = 5fd0dbeeb218a7ce029690a8100453cd8d6a7972cf9d8e657690352692e92c69 +SIZE (pytest-randomly-3.4.1.tar.gz) = 31652 Added: head/devel/py-pytest-randomly/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-pytest-randomly/pkg-descr Tue Jul 21 02:29:45 2020 (r542707) @@ -0,0 +1,4 @@ +Pytest plugin to randomly order tests and control random.seed. (Also available +for nose). + +WWW: https://github.com/pytest-dev/pytest-randomly