Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) (Client CN "mail.NetBSD.org", Issuer "mail.NetBSD.org CA" (not verified)) by mollari.NetBSD.org (Postfix) with ESMTPS id 61E941A9239 for ; Thu, 25 Nov 2021 20:10:29 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id A55C684D53; Thu, 25 Nov 2021 20:10:28 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id E073D84D2D for ; Thu, 25 Nov 2021 20:10:27 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id l2T3XTXwcV6X for ; Thu, 25 Nov 2021 20:10:27 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id F412884D0F for ; Thu, 25 Nov 2021 20:10:26 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id EB67BFAEC; Thu, 25 Nov 2021 20:10:26 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1637871026285770" MIME-Version: 1.0 Date: Thu, 25 Nov 2021 20:10:26 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/devel/py-test-mock To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20211125201026.EB67BFAEC@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1637871026285770 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Thu Nov 25 20:10:26 UTC 2021 Modified Files: pkgsrc/devel/py-test-mock: Makefile PLIST distinfo Log Message: py-test-mock: updated to 3.6.1 3.6.1 (2021-05-06) ------------------ * Fix ``mocker.resetall()`` when using ``mocker.spy()`` 3.6.0 (2021-04-24) ------------------ * pytest-mock no longer supports Python 3.5. * Correct type annotations for ``mocker.patch.object`` to also include the string form. * ``reset_all`` now supports ``return_value`` and ``side_effect`` keyword arguments. 3.5.1 (2021-01-10) ------------------ * Use ``inspect.getattr_static`` instead of resorting to ``object.__getattribute__`` magic. This should better comply with objects which implement a custom descriptor protocol. 3.5.0 (2021-01-04) ------------------ * Now all patch functions will emit a warning instead of raising a ``ValueError`` when used as a context-manager. * Additionally, ``mocker.patch.context_manager`` is available when the user intends to mock a context manager (for example ``threading.Lock`` object), which will not emit that warning. 3.4.0 (2020-12-15) ------------------ * Add `mock.seal` alias to the `mocker` fixture. * Fixed spying on exceptions not covered by the ``Exception`` superclass, like ``KeyboardInterrupt``. Before the fix, both ``spy_return`` and ``spy_exception`` were always assigned to ``None`` whenever such an exception happened. And after this fix, ``spy_exception`` is set to a correct value of an exception that has actually happened. 3.3.1 (2020-08-24) ------------------ * Introduce ``MockFixture`` as an alias to ``MockerFixture``. Before ``3.3.0``, the fixture class was named ``MockFixture``, but was renamed to ``MockerFixture`` to better match the ``mocker`` fixture. While not officially part of the API, it was later discovered that this broke the code of some users which already imported ``pytest_mock.MockFixture`` for type annotations, so we decided to reintroduce the name as an alias. Note however that this is just a stop gap measure, and new code should use ``MockerFixture`` for type annotations. * Improved typing for ``MockerFixture.patch`` 3.3.0 (2020-08-21) ------------------ * ``pytest-mock`` now includes inline type annotations and exposes them to user programs. The ``mocker`` fixture returns ``pytest_mock.MockerFixture``, which can be used to annotate your tests: .. code-block:: python from pytest_mock import MockerFixture def test_foo(mocker: MockerFixture) -> None: ... The type annotations were developed against mypy version ``0.782``, the minimum version supported at the moment. If you run into an error that you believe to be incorrect, please open an issue. 3.2.0 (2020-07-11) ------------------ * `AsyncMock `__ is now exposed in ``mocker`` and supports provides assertion introspection similar to ``Mock`` objects. 3.1.1 (2020-05-31) ------------------ * Fixed performance regression caused by the ``ValueError`` raised when ``mocker`` is used as context manager. 3.1.0 (2020-04-18) ------------------ * New mocker fixtures added that allow using mocking functionality in other scopes: * ``class_mocker`` * ``module_mocker`` * ``package_mocker`` * ``session_mocker`` 3.0.0 (2020-03-31) ------------------ * Python 2.7 and 3.4 are no longer supported. Users using ``pip 9`` or later will install a compatible version automatically. * ``mocker.spy`` now also works with ``async def`` functions. To generate a diff of this commit: cvs rdiff -u -r1.22 -r1.23 pkgsrc/devel/py-test-mock/Makefile cvs rdiff -u -r1.2 -r1.3 pkgsrc/devel/py-test-mock/PLIST cvs rdiff -u -r1.21 -r1.22 pkgsrc/devel/py-test-mock/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1637871026285770 Content-Disposition: inline Content-Length: 3377 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/py-test-mock/Makefile diff -u pkgsrc/devel/py-test-mock/Makefile:1.22 pkgsrc/devel/py-test-mock/Makefile:1.23 --- pkgsrc/devel/py-test-mock/Makefile:1.22 Sat May 16 16:30:15 2020 +++ pkgsrc/devel/py-test-mock/Makefile Thu Nov 25 20:10:26 2021 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.22 2020/05/16 16:30:15 adam Exp $ +# $NetBSD: Makefile,v 1.23 2021/11/25 20:10:26 adam Exp $ -DISTNAME= pytest-mock-2.0.0 +DISTNAME= pytest-mock-3.6.1 PKGNAME= ${PYPKGPREFIX}-${DISTNAME:S/py//} CATEGORIES= devel python MASTER_SITES= ${MASTER_SITE_PYPI:=p/pytest-mock/} @@ -11,17 +11,14 @@ COMMENT= Thin-wrapper around the mock pa LICENSE= mit BUILD_DEPENDS+= ${PYPKGPREFIX}-setuptools_scm-[0-9]*:../../devel/py-setuptools_scm +DEPENDS+= ${PYPKGPREFIX}-test>=5.0:../../devel/py-test -PYTHON_VERSIONED_DEPENDENCIES= test +USE_LANGUAGES= # none -.include "../../lang/python/pyversion.mk" -.if ${_PYTHON_VERSION} == 27 -DEPENDS+= ${PYPKGPREFIX}-mock-[0-9]*:../../devel/py-mock -.endif +PYTHON_VERSIONS_INCOMPATIBLE= 27 do-test: - cd ${WRKSRC} && pytest-${PYVERSSUFFIX} + cd ${WRKSRC} && ${SETENV} ${TEST_ENV} pytest-${PYVERSSUFFIX} .include "../../lang/python/egg.mk" -.include "../../lang/python/versioned_dependencies.mk" .include "../../mk/bsd.pkg.mk" Index: pkgsrc/devel/py-test-mock/PLIST diff -u pkgsrc/devel/py-test-mock/PLIST:1.2 pkgsrc/devel/py-test-mock/PLIST:1.3 --- pkgsrc/devel/py-test-mock/PLIST:1.2 Wed Oct 16 16:37:52 2019 +++ pkgsrc/devel/py-test-mock/PLIST Thu Nov 25 20:10:26 2021 @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.2 2019/10/16 16:37:52 adam Exp $ +@comment $NetBSD: PLIST,v 1.3 2021/11/25 20:10:26 adam Exp $ ${PYSITELIB}/${EGG_INFODIR}/PKG-INFO ${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt ${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt @@ -8,9 +8,13 @@ ${PYSITELIB}/${EGG_INFODIR}/top_level.tx ${PYSITELIB}/pytest_mock/__init__.py ${PYSITELIB}/pytest_mock/__init__.pyc ${PYSITELIB}/pytest_mock/__init__.pyo +${PYSITELIB}/pytest_mock/_util.py +${PYSITELIB}/pytest_mock/_util.pyc +${PYSITELIB}/pytest_mock/_util.pyo ${PYSITELIB}/pytest_mock/_version.py ${PYSITELIB}/pytest_mock/_version.pyc ${PYSITELIB}/pytest_mock/_version.pyo ${PYSITELIB}/pytest_mock/plugin.py ${PYSITELIB}/pytest_mock/plugin.pyc ${PYSITELIB}/pytest_mock/plugin.pyo +${PYSITELIB}/pytest_mock/py.typed Index: pkgsrc/devel/py-test-mock/distinfo diff -u pkgsrc/devel/py-test-mock/distinfo:1.21 pkgsrc/devel/py-test-mock/distinfo:1.22 --- pkgsrc/devel/py-test-mock/distinfo:1.21 Tue Oct 26 10:19:08 2021 +++ pkgsrc/devel/py-test-mock/distinfo Thu Nov 25 20:10:26 2021 @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.21 2021/10/26 10:19:08 nia Exp $ +$NetBSD: distinfo,v 1.22 2021/11/25 20:10:26 adam Exp $ -BLAKE2s (pytest-mock-2.0.0.tar.gz) = a3166d8715b732551a7d455aa26cf27cf2512b23beb16b03f88f811220a98a99 -SHA512 (pytest-mock-2.0.0.tar.gz) = 8bd7f634afebeae628470270c81f0198647bf8cd5b0fac438891d881d9823e40e814d598670bb9c9722b864990958e69d385c7c6a6e2adc81d2adcb303fbe0b0 -Size (pytest-mock-2.0.0.tar.gz) = 24665 bytes +BLAKE2s (pytest-mock-3.6.1.tar.gz) = 576860674f187abe61d2eb9e0f583c1446645f257c69d30af51d3bbb4cffd408 +SHA512 (pytest-mock-3.6.1.tar.gz) = 50a8ffbac1b20b1962558789b24d50c1e7d8d2e2706ee15a576eb5fd1b40d4523482dce7a1078d532b686ff8d38b6d769d356b04241528a0196e14acae0b6199 +Size (pytest-mock-3.6.1.tar.gz) = 29933 bytes --_----------=_1637871026285770--