Subham-KRLX commented on code in PR #58594:
URL: https://github.com/apache/airflow/pull/58594#discussion_r2560166232


##########
devel-common/src/tests_common/pytest_plugin.py:
##########
@@ -36,7 +36,12 @@
 
 import pytest
 import time_machine
-from _pytest.config.findpaths import ConfigValue
+try:
+    from _pytest.config.findpaths import ConfigValue
+except ImportError:
+    from collections import namedtuple
+
+    ConfigValue = namedtuple("ConfigValue", ["value", "origin", "mode"])

Review Comment:
   Good catch - this was unrelated to the time-machine update. Removed in 
673670d.



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to