From 9b37a4fcacb7dba0e5404f6124e9da8504d0f8a1 Mon Sep 17 00:00:00 2001 From: Quentin Pradet Date: Mon, 30 Oct 2023 14:39:33 +0400 Subject: [PATCH] Show installed packages --- noxfile.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/noxfile.py b/noxfile.py index ddff59e8df..99436740c1 100644 --- a/noxfile.py +++ b/noxfile.py @@ -28,8 +28,8 @@ @nox.session(python=["3.6", "3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]) def test(session): - session.install(".") - session.install("-r", "dev-requirements.txt") + session.install(".", silent=False) + session.install("-r", "dev-requirements.txt", silent=False) session.run("python", "setup.py", "test")