/
niceSOFT
/
python3-pytest
Обзор
Документация
Войти
/
niceSOFT
/
python3-pytest
Код
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
8.0.1
src/_pytest/timing.py
14 строк
377 B
Pierre Sassoulas
Migrate from autoflake, black, isort, pyupgrade, flake8 and pydocstyle, to ruff (#11911)
02 фев 2024, 22:21
Не верифицирован
02 фев 2024, 22:21
c11cdfa
Код
Авторство
О чём код?
"""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"]