Skip to content

Commit

Permalink
devel/py-pytest-random-order: Add py-pytest-random-order 1.0.4
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
sunpoet committed Dec 30, 2022
1 parent a6a8beb commit 6b1d91b
Show file tree
Hide file tree
Showing 4 changed files with 32 additions and 0 deletions.
1 change: 1 addition & 0 deletions devel/Makefile
Expand Up @@ -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
Expand Down
21 changes: 21 additions & 0 deletions devel/py-pytest-random-order/Makefile
@@ -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>
3 changes: 3 additions & 0 deletions devel/py-pytest-random-order/distinfo
@@ -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
7 changes: 7 additions & 0 deletions devel/py-pytest-random-order/pkg-descr
@@ -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.

0 comments on commit 6b1d91b

Please sign in to comment.