From 5f034bf5f331456683f0fc351827ff3da0d5f5ce Mon Sep 17 00:00:00 2001 From: chalmer lowe Date: Thu, 2 May 2024 17:31:04 +0000 Subject: [PATCH 1/2] add pip freeze to various noxfile tests --- noxfile.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/noxfile.py b/noxfile.py index 6ee180ef..670d9acf 100644 --- a/noxfile.py +++ b/noxfile.py @@ -256,6 +256,8 @@ def system(session): install_systemtest_dependencies(session, "-c", constraints_path) + session.run("python", "-m", "pip", "freeze") + # Run py.test against the system tests. if system_test_exists: session.run( @@ -511,6 +513,7 @@ def prerelease_deps(session): "requests", ] session.install(*other_deps) + session.run("python", "-m", "pip", "freeze") # Print out prerelease package versions session.run( @@ -523,6 +526,7 @@ def prerelease_deps(session): system_test_path = os.path.join("tests", "system.py") system_test_folder_path = os.path.join("tests", "system") + # Only run system tests if found. if os.path.exists(system_test_path): session.run( From dfef8d93aa4160983ed1d03fae2c03161ebb27c7 Mon Sep 17 00:00:00 2001 From: Owl Bot Date: Thu, 2 May 2024 17:41:34 +0000 Subject: [PATCH 2/2] =?UTF-8?q?=F0=9F=A6=89=20Updates=20from=20OwlBot=20po?= =?UTF-8?q?st-processor?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md --- noxfile.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/noxfile.py b/noxfile.py index 670d9acf..49ec38f6 100644 --- a/noxfile.py +++ b/noxfile.py @@ -513,7 +513,7 @@ def prerelease_deps(session): "requests", ] session.install(*other_deps) - session.run("python", "-m", "pip", "freeze") + session.run("python", "-m", "pip", "freeze") # Print out prerelease package versions session.run( @@ -526,7 +526,6 @@ def prerelease_deps(session): system_test_path = os.path.join("tests", "system.py") system_test_folder_path = os.path.join("tests", "system") - # Only run system tests if found. if os.path.exists(system_test_path): session.run(