Commit aee4080c authored by Jan Kiene's avatar Jan Kiene
Browse files

remove usage in other file

parent be8b2e44
Loading
Loading
Loading
Loading
+6 −6
Original line number Diff line number Diff line
@@ -65,7 +65,6 @@ mv IVAS_rend IVAS_rend_2
# Get fresh copy of scripts, tests and ci
cp -r $SCRIPTS_DIR/{{scripts,tests,ci,pytest.ini}} .
rm -rf tests/ref tests/dut tests/renderer/ref tests/renderer/cut
python3 ci/remove_unsupported_testcases.py scripts/config/self_test.prm scripts/config/self_test_ltv.prm

# Get LTVs
cp $LTV_DIR/* scripts/testv
@@ -96,11 +95,9 @@ python3 scripts/parse_xml_report.py report2.xml report2.csv


def main(critical_list):

    critical = pd.read_csv(critical_list, sep=";")

    for row_counter, row in critical.iterrows():

        # Find level
        level_scaling = 1.0
        if "lev+10" in row["job"]:
@@ -144,8 +141,11 @@ def main(critical_list):
        with open(script_filename, "w") as f:
            f.write(script_content)


if __name__ == "__main__":
    parser = argparse.ArgumentParser(description="Generate bash scripts to reproduce test cases from critical testcase csv list")
    parser = argparse.ArgumentParser(
        description="Generate bash scripts to reproduce test cases from critical testcase csv list"
    )
    parser.add_argument(
        "critical_list",
        type=str,