From owner-svn-ports-all@freebsd.org Wed Feb 24 09:55:46 2021 Return-Path: Delivered-To: svn-ports-all@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 86B3A557507; Wed, 24 Feb 2021 09:55:46 +0000 (UTC) (envelope-from rm@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 4Dlrry3PSrz4lPl; Wed, 24 Feb 2021 09:55:46 +0000 (UTC) (envelope-from rm@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 5CC2B2A6BE; Wed, 24 Feb 2021 09:55:46 +0000 (UTC) (envelope-from rm@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 11O9tkoG082284; Wed, 24 Feb 2021 09:55:46 GMT (envelope-from rm@FreeBSD.org) Received: (from rm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 11O9tjvT082280; Wed, 24 Feb 2021 09:55:45 GMT (envelope-from rm@FreeBSD.org) Message-Id: <202102240955.11O9tjvT082280@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rm set sender to rm@FreeBSD.org using -f From: Ruslan Makhmatkhanov Date: Wed, 24 Feb 2021 09:55:45 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r566462 - in head/devel: . py-pytest-httpbin X-SVN-Group: ports-head X-SVN-Commit-Author: rm X-SVN-Commit-Paths: in head/devel: . py-pytest-httpbin X-SVN-Commit-Revision: 566462 X-SVN-Commit-Repository: ports 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.34 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: Wed, 24 Feb 2021 09:55:46 -0000 Author: rm Date: Wed Feb 24 09:55:45 2021 New Revision: 566462 URL: https://svnweb.freebsd.org/changeset/ports/566462 Log: Pytest-httpbin creates a pytest fixture that is dependency-injected into your tests. It automatically starts up a HTTP server in a separate thread running httpbin and provides your test with the URL in the fixture. WWW: https://github.com/kevin1024/pytest-httpbin PR: 252187 Submitted by: python@FreeBSD.org Added: head/devel/py-pytest-httpbin/ head/devel/py-pytest-httpbin/Makefile (contents, props changed) head/devel/py-pytest-httpbin/distinfo (contents, props changed) head/devel/py-pytest-httpbin/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Wed Feb 24 09:54:19 2021 (r566461) +++ head/devel/Makefile Wed Feb 24 09:55:45 2021 (r566462) @@ -4937,6 +4937,7 @@ SUBDIR += py-pytest-forked SUBDIR += py-pytest-freezegun SUBDIR += py-pytest-helpers-namespace + SUBDIR += py-pytest-httpbin SUBDIR += py-pytest-isort SUBDIR += py-pytest-lazy-fixture SUBDIR += py-pytest-localserver Added: head/devel/py-pytest-httpbin/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-pytest-httpbin/Makefile Wed Feb 24 09:55:45 2021 (r566462) @@ -0,0 +1,21 @@ +# $FreeBSD$ + +PORTNAME= pytest-httpbin +DISTVERSION= 1.0.0 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= python@FreeBSD.org +COMMENT= Easily test your HTTP library against a local copy of httpbin.org + +LICENSE= MIT + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}httpbin>0:www/py-httpbin@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}six>0:devel/py-six@${PY_FLAVOR} + +USES= python +USE_PYTHON= autoplist distutils concurrent +NO_ARCH= yes + +.include Added: head/devel/py-pytest-httpbin/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-pytest-httpbin/distinfo Wed Feb 24 09:55:45 2021 (r566462) @@ -0,0 +1,3 @@ +TIMESTAMP = 1609040419 +SHA256 (pytest-httpbin-1.0.0.tar.gz) = d8ce547f42423026550ed7765f6c6d50c033b43025e8592270a7abf970e19b72 +SIZE (pytest-httpbin-1.0.0.tar.gz) = 12244 Added: head/devel/py-pytest-httpbin/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-pytest-httpbin/pkg-descr Wed Feb 24 09:55:45 2021 (r566462) @@ -0,0 +1,6 @@ +Pytest-httpbin creates a pytest fixture that is dependency-injected +into your tests. It automatically starts up a HTTP server in a +separate thread running httpbin and provides your test with the URL +in the fixture. + +WWW: https://github.com/kevin1024/pytest-httpbin