Allow specifying -vvv to debops_tests.

This commit is contained in:
David Wilson 2019-07-23 17:25:53 +01:00
parent b1379e6f45
commit 321dac3046
1 changed files with 3 additions and 2 deletions

View File

@ -3,6 +3,7 @@
from __future__ import print_function
import os
import shutil
import sys
import ci_lib
@ -68,8 +69,8 @@ with ci_lib.Fold('job_setup'):
with ci_lib.Fold('first_run'):
ci_lib.run('debops common')
ci_lib.run('debops common %s', ' '.join(sys.argv[1:]))
with ci_lib.Fold('second_run'):
ci_lib.run('debops common')
ci_lib.run('debops common %s', ' '.join(sys.argv[1:]))