22 lines
603 B
Makefile
22 lines
603 B
Makefile
|
# $NetBSD: Makefile,v 1.1 2018/10/07 08:13:09 adam Exp $
|
||
|
|
||
|
DISTNAME= pytest-randomly-1.2.3
|
||
|
PKGNAME= ${PYPKGPREFIX}-${DISTNAME:S/py//}
|
||
|
CATEGORIES= devel python
|
||
|
MASTER_SITES= ${MASTER_SITE_PYPI:=p/pytest-randomly/}
|
||
|
|
||
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
||
|
HOMEPAGE= https://github.com/pytest-dev/pytest-randomly
|
||
|
COMMENT= Pytest plugin to randomly order tests and control random.seed
|
||
|
LICENSE= modified-bsd
|
||
|
|
||
|
DEPENDS+= ${PYPKGPREFIX}-test-[0-9]*:../../devel/py-test
|
||
|
|
||
|
USE_LANGUAGES= # none
|
||
|
|
||
|
do-test:
|
||
|
cd ${WRKSRC} && pytest-${PYVERSSUFFIX} tests
|
||
|
|
||
|
.include "../../lang/python/egg.mk"
|
||
|
.include "../../mk/bsd.pkg.mk"
|