Add CLI option to create ci compose

Fixes: #476
Signed-off-by: Lubomír Sedlář <lsedlar@redhat.com>
This commit is contained in:
Lubomír Sedlář 2016-11-29 08:28:35 +01:00
parent 75934f20e5
commit e66d8dd190
1 changed files with 7 additions and 0 deletions

View File

@ -104,6 +104,13 @@ def main():
dest="compose_type",
help="make a test compose",
)
parser.add_option(
"--ci",
action="store_const",
const="ci",
dest="compose_type",
help="make a CI compose",
)
parser.add_option(
"--koji-event",
metavar="ID",