diff --git a/.ci/debops_common_tests.py b/.ci/debops_common_tests.py index b0e2e4e8..8b35de1e 100755 --- a/.ci/debops_common_tests.py +++ b/.ci/debops_common_tests.py @@ -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:]))