Home | History | Annotate | Download | only in steps

Lines Matching full:true

32     build = make_option("--no-build", action="store_false", dest="build", default=True, help="Commit without building first, implies --no-test.")
35 check_builders = make_option("--ignore-builders", action="store_false", dest="check_builders", default=True, help="Don't check to see if the build.webkit.org builders are green before landing.")
36 check_style = make_option("--ignore-style", action="store_false", dest="check_style", default=True, help="Don't check to see if the patch has proper style before uploading.")
37 clean = make_option("--no-clean", action="store_false", dest="clean", default=True, help="Don't check if the working directory is clean before applying patches")
38 close_bug = make_option("--no-close", action="store_false", dest="close_bug", default=True, help="Leave bug open after landing.")
41 confirm = make_option("--no-confirm", action="store_false", dest="confirm", default=True, help="Skip confirmation steps.")
47 obsolete_patches = make_option("--no-obsolete", action="store_false", dest="obsolete_patches", default=True, help="Do not obsolete old patches before posting this one.")
53 review = make_option("--no-review", action="store_false", dest="review", default=True, help="Do not mark the patch for review.")
55 test = make_option("--no-test", action="store_false", dest="test", default=True, help="Commit without running run-webkit-tests.")
56 update = make_option("--no-update", action="store_false", dest="update", default=True, help="Don't update the working directory.")