From 5887868c372ab58abe775e5be84e1c9eb5e9545b Mon Sep 17 00:00:00 2001 From: Chelsea Lin Date: Tue, 18 Mar 2025 22:33:20 +0000 Subject: [PATCH] chore: runs 'pip freeze' in system tests for debugging --- noxfile.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/noxfile.py b/noxfile.py index f79ed52da8..8059f4c8ce 100644 --- a/noxfile.py +++ b/noxfile.py @@ -342,6 +342,9 @@ def run_system( install_systemtest_dependencies(session, install_test_extra, "-c", constraints_path) + # Print out package versions for debugging. + session.run("python", "-m", "pip", "freeze") + # Run py.test against the system tests. pytest_cmd = [ "py.test",