15
0
Files
python-pymongo/mongodb-skip-test.patch
Dirk Mueller e3536c917b - update to 4.15.5:
* Fixed a bug that could cause AutoReconnect("connection pool
    paused") errors when cursors fetched more documents from the
    database after SDAM heartbeat failures.
  * Relaxed the callback type of :meth:`~pymongo.asynchronous.cli
    ent_session.AsyncClientSession.with_transaction` to allow the
    broader Awaitable type rather than only Coroutine objects.
  * Added the missing Python 3.14 trove classifier to the package
    metadata.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pymongo?expand=0&rev=102
2025-12-28 21:14:12 +00:00

15 lines
576 B
Diff

Index: pymongo-3.8.0/test/test_objectid.py
===================================================================
--- pymongo-3.8.0.orig/test/test_objectid.py
+++ pymongo-3.8.0/test/test_objectid.py
@@ -172,7 +172,8 @@ class TestObjectId(unittest.TestCase):
ObjectId()
self.assertEqual(ObjectId._inc, 0)
- def test_timestamp_values(self):
+ # this test overflows on i586
+ def _test_timestamp_values(self):
# Spec-test to check timestamp field is interpreted correctly.
TEST_DATA = {
0x00000000: (1970, 1, 1, 0, 0, 0),