devel/py-pytest-random-order: Add py-pytest-random-order 1.0.4

pytest-random-order is a pytest plugin that randomises the order of tests. This
can be useful to detect a test that passes just because it happens to run after
an unrelated test that leaves the system in a favourable state.

The plugin allows user to control the level of randomness they want to introduce
and to disable reordering on subsets of tests. Tests can be rerun in a specific
order by passing a seed value reported in a previous test run.
This commit is contained in:
Po-Chuan Hsieh 2022-12-30 16:36:11 +08:00
parent a6a8beb91d
commit 6b1d91b9b9
No known key found for this signature in database
GPG key ID: 9A4BD10F002DD04B
4 changed files with 32 additions and 0 deletions

View file

@ -5177,6 +5177,7 @@
SUBDIR += py-pytest-profiling
SUBDIR += py-pytest-pycodestyle
SUBDIR += py-pytest-qt
SUBDIR += py-pytest-random-order
SUBDIR += py-pytest-randomly
SUBDIR += py-pytest-regressions
SUBDIR += py-pytest-regtest

View file

@ -0,0 +1,21 @@
PORTNAME= pytest-random-order
PORTVERSION= 1.0.4
CATEGORIES= devel python
MASTER_SITES= CHEESESHOP
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
MAINTAINER= sunpoet@FreeBSD.org
COMMENT= Randomize the order in which pytest tests are run with some control over the randomness
WWW= https://github.com/jbasko/pytest-random-order
LICENSE= MIT
LICENSE_FILE= ${WRKSRC}/LICENSE
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pytest>=3.0.0,1:devel/py-pytest@${PY_FLAVOR}
USES= python:3.7+
USE_PYTHON= autoplist concurrent distutils
NO_ARCH= yes
.include <bsd.port.mk>

View file

@ -0,0 +1,3 @@
TIMESTAMP = 1669057509
SHA256 (pytest-random-order-1.0.4.tar.gz) = 6b2159342a4c8c10855bc4fc6d65ee890fc614cb2b4ff688979b008a82a0ff52
SIZE (pytest-random-order-1.0.4.tar.gz) = 18045

View file

@ -0,0 +1,7 @@
pytest-random-order is a pytest plugin that randomises the order of tests. This
can be useful to detect a test that passes just because it happens to run after
an unrelated test that leaves the system in a favourable state.
The plugin allows user to control the level of randomness they want to introduce
and to disable reordering on subsets of tests. Tests can be rerun in a specific
order by passing a seed value reported in a previous test run.