Skip to content

Commit

Permalink
Make installer_args optional for run-test
Browse files Browse the repository at this point in the history
Installer works with no arguments
  • Loading branch information
yuvipanda committed Aug 11, 2018
1 parent 9d1cdbe commit 5c7c43d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .circleci/integration-test.py
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ def main():

run_test_parser = subparsers.add_parser('run-test')
run_test_parser.add_argument('test_name')
run_test_parser.add_argument('installer_args', default='')
run_test_parser.add_argument('installer_args', default='', nargs='?')

args = argparser.parse_args()

Expand Down

0 comments on commit 5c7c43d

Please sign in to comment.