pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/devel/py-test-randomly py-test-randomly: updated to 3....



details:   https://anonhg.NetBSD.org/pkgsrc/rev/092df362ccb3
branches:  trunk
changeset: 384945:092df362ccb3
user:      adam <adam%pkgsrc.org@localhost>
date:      Thu Sep 08 07:44:36 2022 +0000

description:
py-test-randomly: updated to 3.12.0

3.12.0 (2022-05-11)
-------------------

* Support Python 3.11.

3.11.0 (2022-01-10)
-------------------

* Drop Python 3.6 support.

3.10.3 (2021-11-30)
-------------------

* Work on FIPS Python 3.9+, by declaring use of ``hashlib.md5()`` as not used for security.

3.10.2 (2021-11-10)
-------------------

* Fix crash when pytest’s cacheprovider is disabled.
* Improve group name in ``pytest --help``.

3.10.1 (2021-08-13)
-------------------

* Fix new shuffling to work when one or more test in a class or module have the
  same test id.

3.10.0 (2021-08-13)
-------------------

* Rework shuffling algorithm to use hashing. This means that running a subset
  of tests with the same seed will now produce the same ordering as running the
  full set of tests. This allows narrowing down ordering-related failures.

* Shuffle before other test collection hooks. This allows
  pytest’s `--stepwise flag
  <https://docs.pytest.org/en/latest/cache.html#stepwise>`__ to work, among
  other things.

3.9.0 (2021-08-12)
------------------

* Add type hints.

3.8.0 (2021-05-10)
------------------

* Support Python 3.10.

3.7.0 (2021-04-11)
------------------

* Drop dependency on ``backports.entry-points-selectable`` by depending on
  ``importlib-metadata`` version 3.6.0+.

3.6.0 (2021-04-01)
------------------

* Fix deprecation warning from importlib-metadata 3.9.0+.

* Stop distributing tests to reduce package size. Tests are not intended to be
  run outside of the tox setup in the repository. Repackagers can use GitHub's
  tarballs per tag.

* Drop Python 3.5 support.

3.5.0 (2020-11-16)
------------------

* Support Python 3.9.
* Move license from BSD to MIT License.

3.4.1 (2020-07-10)
------------------

* Fix numpy error ``ValueError: Seed must be between 0 and 2**32 - 1`` when
  passed a seed outside of this range.

3.4.0 (2020-05-27)
------------------

* Provide a ``faker_seed`` fixture to set the seed for tests using faker's
  pytest fixtures

diffstat:

 devel/py-test-randomly/Makefile |  11 +++++------
 devel/py-test-randomly/PLIST    |  12 ++++++++----
 devel/py-test-randomly/distinfo |   8 ++++----
 3 files changed, 17 insertions(+), 14 deletions(-)

diffs (66 lines):

diff -r e6631f3cb22b -r 092df362ccb3 devel/py-test-randomly/Makefile
--- a/devel/py-test-randomly/Makefile   Thu Sep 08 07:38:50 2022 +0000
+++ b/devel/py-test-randomly/Makefile   Thu Sep 08 07:44:36 2022 +0000
@@ -1,8 +1,7 @@
-# $NetBSD: Makefile,v 1.7 2022/01/04 20:53:42 wiz Exp $
+# $NetBSD: Makefile,v 1.8 2022/09/08 07:44:36 adam Exp $
 
-DISTNAME=      pytest-randomly-3.3.1
+DISTNAME=      pytest-randomly-3.12.0
 PKGNAME=       ${PYPKGPREFIX}-${DISTNAME:S/py//}
-PKGREVISION=   1
 CATEGORIES=    devel python
 MASTER_SITES=  ${MASTER_SITE_PYPI:=p/pytest-randomly/}
 
@@ -18,12 +17,12 @@
 PYTHON_VERSIONS_INCOMPATIBLE=  27
 
 .include "../../lang/python/pyversion.mk"
-.if ${_PYTHON_VERSION} < 38
-DEPENDS+=      ${PYPKGPREFIX}-importlib-metadata-[0-9]*:../../devel/py-importlib-metadata
+.if ${_PYTHON_VERSION} < 310
+DEPENDS+=      ${PYPKGPREFIX}-importlib-metadata>=3.6.0:../../devel/py-importlib-metadata
 .endif
 
 do-test:
-       cd ${WRKSRC} && pytest-${PYVERSSUFFIX} tests
+       cd ${WRKSRC} && ${SETENV} ${TEST_ENV} pytest-${PYVERSSUFFIX} tests
 
 .include "../../lang/python/egg.mk"
 .include "../../mk/bsd.pkg.mk"
diff -r e6631f3cb22b -r 092df362ccb3 devel/py-test-randomly/PLIST
--- a/devel/py-test-randomly/PLIST      Thu Sep 08 07:38:50 2022 +0000
+++ b/devel/py-test-randomly/PLIST      Thu Sep 08 07:44:36 2022 +0000
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.1 2018/10/07 08:13:09 adam Exp $
+@comment $NetBSD: PLIST,v 1.2 2022/09/08 07:44:36 adam Exp $
 ${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
 ${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
 ${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
@@ -6,6 +6,10 @@
 ${PYSITELIB}/${EGG_INFODIR}/not-zip-safe
 ${PYSITELIB}/${EGG_INFODIR}/requires.txt
 ${PYSITELIB}/${EGG_INFODIR}/top_level.txt
-${PYSITELIB}/pytest_randomly.py
-${PYSITELIB}/pytest_randomly.pyc
-${PYSITELIB}/pytest_randomly.pyo
+${PYSITELIB}/pytest_randomly/__init__.py
+${PYSITELIB}/pytest_randomly/__init__.pyc
+${PYSITELIB}/pytest_randomly/__init__.pyo
+${PYSITELIB}/pytest_randomly/compat.py
+${PYSITELIB}/pytest_randomly/compat.pyc
+${PYSITELIB}/pytest_randomly/compat.pyo
+${PYSITELIB}/pytest_randomly/py.typed
diff -r e6631f3cb22b -r 092df362ccb3 devel/py-test-randomly/distinfo
--- a/devel/py-test-randomly/distinfo   Thu Sep 08 07:38:50 2022 +0000
+++ b/devel/py-test-randomly/distinfo   Thu Sep 08 07:44:36 2022 +0000
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.8 2021/10/26 10:19:09 nia Exp $
+$NetBSD: distinfo,v 1.9 2022/09/08 07:44:36 adam Exp $
 
-BLAKE2s (pytest-randomly-3.3.1.tar.gz) = 9d785bbcf5bb6a2a39fd471d3c56c59de7258bfd7cff08f6d24d1281f35110f6
-SHA512 (pytest-randomly-3.3.1.tar.gz) = 107b42df282d04d48a30d27e08fd177bf1f5c2d83fb5f2374fe76699fcc347c74cb57f6507d208569eaf77820099404032fbc15cfe78f6c2da259dcfcea6ffc0
-Size (pytest-randomly-3.3.1.tar.gz) = 30980 bytes
+BLAKE2s (pytest-randomly-3.12.0.tar.gz) = 5bfe9a68ed40de7c4505a799c9fbea8dfbf850542c95f0b1a7068d111491ec43
+SHA512 (pytest-randomly-3.12.0.tar.gz) = dcfa7a3438729cf81d3473461397cf309d751a72542ad0d6d5892f87a00f03c160e1689f50d2533598913638ddfa9e3dbe970a8e666c07442f2651507f0fd7c0
+Size (pytest-randomly-3.12.0.tar.gz) = 21487 bytes


Home | Main Index | Thread Index | Old Index