From 2e83d2bc00acbcc1fd529dbf0a0e677cabfe6b50 Mon Sep 17 00:00:00 2001 From: johnybx Date: Mon, 15 Jan 2024 09:03:46 +0100 Subject: [PATCH] fix: - use `--verbosity=0` when collecting pytest parametrized tests (#60) --- neotest_python/pytest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/neotest_python/pytest.py b/neotest_python/pytest.py index 48d4514..a34454c 100644 --- a/neotest_python/pytest.py +++ b/neotest_python/pytest.py @@ -197,4 +197,4 @@ def maybe_debugpy_postmortem(excinfo): def collect(args): - pytest.main(["--collect-only", "-q"] + args) + pytest.main(["--collect-only", "--verbosity=0", "-q"] + args)