From 66e696ee15b9638a340a80cd6fded374cf35623e Mon Sep 17 00:00:00 2001 From: Yih-Dar <2521628+ydshieh@users.noreply.github.com> Date: Fri, 9 May 2025 11:06:37 +0200 Subject: [PATCH] [Temporary] Log some information in some pytest/pluggy internal places (#37996) log pytest info Co-authored-by: ydshieh --- .circleci/create_circleci_config.py | 1 + 1 file changed, 1 insertion(+) diff --git a/.circleci/create_circleci_config.py b/.circleci/create_circleci_config.py index d3a41a70a5..757ad7e06e 100644 --- a/.circleci/create_circleci_config.py +++ b/.circleci/create_circleci_config.py @@ -110,6 +110,7 @@ class CircleCIJob: print(f"Using {self.docker_image} docker image") if self.install_steps is None: self.install_steps = ["uv venv && uv pip install ."] + self.install_steps.append("uv venv && uv pip install git+https://github.com/ydshieh/pytest.git@8.3.5-ydshieh git+https://github.com/ydshieh/pluggy.git@1.5.0-ydshieh") if self.pytest_options is None: self.pytest_options = {} if isinstance(self.tests_to_run, str):