From 1bdcdb645ef0cf7a9871f977dd2afb4a64824594 Mon Sep 17 00:00:00 2001 From: FasterSpeeding Date: Mon, 2 Dec 2024 01:09:23 +0000 Subject: [PATCH] Make slot check verbose (#418) --- python/noxfile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/noxfile.py b/python/noxfile.py index 5dd3cfcd..955f72b4 100644 --- a/python/noxfile.py +++ b/python/noxfile.py @@ -212,7 +212,7 @@ def slot_check(session: nox.Session) -> None: # TODO: don't require installing .? # https://github.com/pypa/pip/issues/10362 _install_deps(session, "lint", name="slot_check") - session.run("slotscheck", "-m", _CONFIG.assert_project_name()) + session.run("slotscheck", "-v", "-m", _CONFIG.assert_project_name()) @_filtered_session(reuse_venv=True, name="spell-check")