From 85077b273d15eb837cddc7e9ed5bcaf5661c2f3e Mon Sep 17 00:00:00 2001 From: Shantanu <12621235+hauntsaninja@users.noreply.github.com> Date: Tue, 19 Jul 2022 19:42:52 -0700 Subject: [PATCH] Show all packages in environment (#8341) --- tests/stubtest_third_party.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/stubtest_third_party.py b/tests/stubtest_third_party.py index ad76fb948..02fb0ad15 100755 --- a/tests/stubtest_third_party.py +++ b/tests/stubtest_third_party.py @@ -92,7 +92,7 @@ def run_stubtest(dist: Path, *, verbose: bool = False) -> bool: print_command_output(e) print("Ran with the following environment:", file=sys.stderr) - ret = subprocess.run([pip_exe, "freeze"], capture_output=True) + ret = subprocess.run([pip_exe, "freeze", "--all"], capture_output=True) print_command_output(ret) if allowlist_path.exists():