From 70e06d0ac92eb5191fc69f85cda5e68084ec4ba7 Mon Sep 17 00:00:00 2001 From: Hector Cao <122458375+hector-cao@users.noreply.github.com> Date: Thu, 3 Oct 2024 11:03:29 +0200 Subject: [PATCH] tests : add tox command to collect tests (#238) allow to display the list of tests --- tests/tox.ini | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tests/tox.ini b/tests/tox.ini index 5264772..2afe3a5 100644 --- a/tests/tox.ini +++ b/tests/tox.ini @@ -53,3 +53,7 @@ commands = [testenv:test_specify] commands = python3 -m pytest -s -v --junitxml=test_specify_report.xml -k {posargs} + +[testenv:collect_tests] +commands = + python3 -m pytest -s -v --collect-only -k {posargs}