Skip to content

Commit

Permalink
[avocado_list] remove --paginator call
Browse files Browse the repository at this point in the history
Paginator is per default off in recent versions.
For older versions the argument can be passed in the <vt-options>

Signed-off-by: Sebastian Mitterle <[email protected]>
  • Loading branch information
smitterl committed Mar 13, 2021
1 parent 34d6863 commit 98dd21b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion avocado_list.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ def parse_args():

def get_avocado_list():
test_names = []
command = ("avocado list %s --vt-only-filter %s --paginator off" %
command = ("avocado list %s --vt-only-filter %s" %
(OPTIONS, ONLY))
output = subprocess.check_output(command, shell=True).decode()
for row in output.split('\n'):
Expand Down

0 comments on commit 98dd21b

Please sign in to comment.