Skip to content

Commit aaa7090

Browse files
test: add pip freeze to several sessions in the noxfile to aid in troubleshooting (#764)
* add pip freeze to various noxfile tests * 🦉 Updates from OwlBot post-processor See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md --------- Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com>
1 parent a70e778 commit aaa7090

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

noxfile.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -256,6 +256,8 @@ def system(session):
256256

257257
install_systemtest_dependencies(session, "-c", constraints_path)
258258

259+
session.run("python", "-m", "pip", "freeze")
260+
259261
# Run py.test against the system tests.
260262
if system_test_exists:
261263
session.run(
@@ -511,6 +513,7 @@ def prerelease_deps(session):
511513
"requests",
512514
]
513515
session.install(*other_deps)
516+
session.run("python", "-m", "pip", "freeze")
514517

515518
# Print out prerelease package versions
516519
session.run(

0 commit comments

Comments
 (0)