4648cd6f6b
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.
18 lines
535 B
Makefile
18 lines
535 B
Makefile
# $NetBSD: Makefile,v 1.1 2020/01/29 21:43:02 adam Exp $
|
|
|
|
DISTNAME= pytest-random-order-1.0.4
|
|
PKGNAME= ${PYPKGPREFIX}-${DISTNAME:S/^py//}
|
|
CATEGORIES= devel python
|
|
MASTER_SITES= ${MASTER_SITE_PYPI:=p/pytest-random-order/}
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= https://github.com/jbasko/pytest-random-order
|
|
COMMENT= Randomise the order in which pytest tests are run
|
|
LICENSE= mit
|
|
|
|
DEPENDS+= ${PYPKGPREFIX}-test>=3.0.0:../../devel/py-test
|
|
|
|
USE_LANGUAGES= # none
|
|
|
|
.include "../../lang/python/egg.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|