Skip to content

Commit a1d8b84

Browse files
committed
feat: simple discover all command
shows which tests are executed without running them.
1 parent a7f8408 commit a1d8b84

File tree

1 file changed

+1
-1
lines changed
  • packages/runner/src/robotcode/runner/cli/discover

1 file changed

+1
-1
lines changed

Diff for: packages/runner/src/robotcode/runner/cli/discover/discover.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,7 @@ def print(item: TestItem, indent: int = 0) -> Iterable[str]:
232232
for child in item.children:
233233
yield from print(child, indent + 2)
234234

235-
click.echo_via_pager(print(collector.result))
235+
app.echo_via_pager(print(collector.result))
236236
else:
237237
app.print_data(collector.result, remove_defaults=True)
238238
except DataError as err:

0 commit comments

Comments
 (0)