pyfakefs implements a fake file system that mocks the Python file system modules. Using pyfakefs, your tests operate on a fake file system in memory without touching the real disk. The software under test requires no modification to work with pyfakefs. Part of PR pkg/52941.
14 lines
423 B
Makefile
14 lines
423 B
Makefile
# $NetBSD: Makefile,v 1.1 2018/05/25 04:01:28 bsiegert Exp $
|
|
|
|
DISTNAME= pyfakefs-3.4.1
|
|
PKGNAME= ${PYPKGPREFIX}-${DISTNAME:S/py//}
|
|
CATEGORIES= devel python
|
|
MASTER_SITES= ${MASTER_SITE_PYPI:=p/pyfakefs/}
|
|
|
|
MAINTAINER= bsiegert@NetBSD.org
|
|
HOMEPAGE= https://pyfakefs.org/
|
|
COMMENT= Fake file system that mocks the Python file system modules
|
|
LICENSE= apache-2.0
|
|
|
|
.include "../../lang/python/egg.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|