Esempio n. 1
0
def get_client_arf_to_html_with_define_dest(src, rule):
    return ArfToHtml([
        "--output",
        tests.any_test_help.get_src(
            os.path.join(tempfile.gettempdir(), str(uuid.uuid4()))),
        tests.any_test_help.get_src(src), rule
    ])
Esempio n. 2
0
def get_client_arf_to_html_with_option_show_not_selected_rules_and_show_failed_rules(
        src, rule):
    return ArfToHtml([
        "--show-not-selected-rules", "--show-failed-rules",
        tests.any_test_help.get_src(src), rule
    ])
Esempio n. 3
0
def get_client_arf_to_html(src, rule):
    return ArfToHtml(["--display", tests.any_test_help.get_src(src), rule])