pymongo_inmemory icon indicating copy to clipboard operation
pymongo_inmemory copied to clipboard

A mongo mocking library with an ephemeral MongoDB running in memory.

Results 29 pymongo_inmemory issues
Sort by recently updated
recently updated
newest added

Bumps [requests](https://github.com/psf/requests) from 2.31.0 to 2.32.0. Release notes Sourced from requests's releases. v2.32.0 2.32.0 (2024-05-20) 🐍 PYCON US 2024 EDITION 🐍 Security Fixed an issue where setting verify=False on the...

dependencies

Bumps [dnspython](https://github.com/rthalley/dnspython) from 2.4.2 to 2.6.1. Release notes Sourced from dnspython's releases. dnspython 2.6.1 See What's New for details. This is a bug fix release for 2.6.0 where the "TuDoor"...

dependencies

Bumps [idna](https://github.com/kjd/idna) from 3.4 to 3.7. Release notes Sourced from idna's releases. v3.7 What's Changed Fix issue where specially crafted inputs to encode() could take exceptionally long amount of time...

dependencies

Bumps [pymongo](https://github.com/mongodb/mongo-python-driver) from 4.5.0 to 4.6.3. Release notes Sourced from pymongo's releases. PyMongo 4.6.2 Release notes: https://www.mongodb.com/community/forums/t/pymongo-4-6-2-released/267404 PyMongo 4.6.1 Release notes: https://www.mongodb.com/community/forums/t/pymongo-4-6-1-released/255752 PyMongo 4.6.0 Release notes: https://www.mongodb.com/community/forums/t/pymongo-4-6-0-released/251866 Changelog Sourced from...

dependencies

Bumps [black](https://github.com/psf/black) from 23.9.1 to 24.3.0. Release notes Sourced from black's releases. 24.3.0 Highlights This release is a milestone: it fixes Black's first CVE security vulnerability. If you run Black...

dependencies

**Describe the bug** subprocess fails to load mongod on os x **To Reproduce** Steps to reproduce the behavior: ```python import pytest from pymongo_inmemory import MongoClient if not os.path.exists("mongo_dl_cache/download") or not...

bug
high priority

**Describe the bug** Starting MongoDB fails on versions later than 6.1.0 due to removal of `ephemeralForTest` engine: https://jira.mongodb.org/browse/SERVER-65151 **To Reproduce** This works: ``` from pymongo_inmemory import MongoClient import os os.environ["PYMONGOIM__DOWNLOAD_URL"]...

bug

**Describe the bug** pymongo.errors.ServerSelectionTimeoutError: 127.0.0.1:27017: [Errno 111] Connection refused. This used to work in the past due to (probably ?!) System update suddenly stopped working. For generic linux with version...

bug

Hello, Is it possible to add support for single node replica set to test transactions? Potential solution could be based of the following: https://www.mongodb.com/docs/v5.0/tutorial/convert-standalone-to-replica-set/

enhancement

Thanks for developing this very useful library! I am evaluating it as an alternative to `mongomock` in a data management library [maggma](https://github.com/materialsproject/maggma). Currently [`pymongo_inmemory.context.conf`](https://github.com/kaizendorks/pymongo_inmemory/blob/b2eec6041ca61f4b63a634049ce713b91f296519/pymongo_inmemory/context.py#L33) reads `setup.cfg`. Is it possible to...

enhancement