1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-02-08 12:01:56 +00:00

Take maintainership

This commit is contained in:
Sunpoet Po-Chuan Hsieh 2020-01-18 19:01:53 +00:00
parent 0322a96cee
commit 6aeb91fc3d
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=523483
2 changed files with 7 additions and 8 deletions

View File

@ -6,7 +6,7 @@ CATEGORIES= databases
MASTER_SITES= CHEESESHOP
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
MAINTAINER= ports@FreeBSD.org
MAINTAINER= sunpoet@FreeBSD.org
COMMENT= Fake version of databases/py-redis for unit testing
LICENSE= BSD3CLAUSE
@ -18,7 +18,7 @@ TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pytest-cov<3.0:devel/py-pytest-cov@${PY_FLA
${PYTHON_PKGNAMEPREFIX}six>0:devel/py-six@${PY_FLAVOR}
USES= python
USE_PYTHON= distutils autoplist
USE_PYTHON= autoplist concurrent distutils
NO_ARCH= yes

View File

@ -1,8 +1,7 @@
fakeredis is a pure python implementation of the redis-py python client that
simulates talking to a redis server. This was created for a single purpose:
to write unittests. Setting up redis is not hard, but many times you want to
write unittests that do not talk to an external server (such as redis). This
module now allows tests to simply use this module as a reasonable substitute
for redis.
fakeredis is a pure Python implementation of the redis-py python client that
simulates talking to a redis server. This was created for a single purpose: to
write unittests. Setting up redis is not hard, but many times you want to write
unittests that do not talk to an external server (such as redis). This module
now allows tests to simply use this module as a reasonable substitute for redis.
WWW: https://github.com/jamesls/fakeredis