Files
mongo/buildscripts/resmokelib/__init__.py
Juan Gu e16cfa9ff5 SERVER-93544 Temporarily suppress pymongo deprecation warnings (#26090)
GitOrigin-RevId: 26be183fb79339c6628a6268a19bc6de357d5333
2024-08-14 21:07:53 +00:00

19 lines
608 B
Python
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
"""Empty."""
from buildscripts.resmokelib import config
from buildscripts.resmokelib import errors
from buildscripts.resmokelib import logging
from buildscripts.resmokelib import parser
from buildscripts.resmokelib import reportfile
from buildscripts.resmokelib import sighandler
from buildscripts.resmokelib import suitesconfig
from buildscripts.resmokelib import testing
from buildscripts.resmokelib import utils
import warnings
# TODOSERVER-93552 Bumping pymongo to the new version
warnings.filterwarnings(
"ignore", message="Properties that return a naïve datetime", category=UserWarning
)