Files
Hotel-Booking/Backend/venv/lib/python3.12/site-packages/_pytest/timing.py
Iliyan Angelov 5a8ca3c475 updates
2025-12-06 03:27:35 +02:00

13 lines
375 B
Python

"""Indirection for time functions.
We intentionally grab some "time" functions internally to avoid tests mocking "time" to affect
pytest runtime information (issue #185).
Fixture "mock_timing" also interacts with this module for pytest's own tests.
"""
from time import perf_counter
from time import sleep
from time import time
__all__ = ["perf_counter", "sleep", "time"]