working on memory core locking + tests

Memory core is now thread safe

extend memory core tests

added checkdocs
This commit is contained in:
Shay Palachi
2020-11-26 13:48:03 +02:00
parent 67d425e3e7
commit f6073a3ddf
9 changed files with 427 additions and 43 deletions
+10 -1
View File
@@ -15,7 +15,16 @@ except ImportError:
import versioneer
TEST_REQUIRES = ['pytest', 'coverage', 'pytest-cov', 'pymongo', 'pandas']
TEST_REQUIRES = [
# testing and coverage
'pytest', 'coverage', 'pytest-cov',
# optional dependencies
'pymongo',
# non-testing packages required by tests, not by the package
'pandas',
# to be able to run `python setup.py checkdocs`
'collective.checkdocs', 'pygments',
]
README_RST = ''
with open('README.rst') as f: