testapp.scripts =============== .. py:module:: testapp.scripts Submodules ---------- .. toctree:: :maxdepth: 1 /autoapi/testapp/scripts/_script_manager/index /autoapi/testapp/scripts/dummy_fail_test/index /autoapi/testapp/scripts/dummy_test/index /autoapi/testapp/scripts/full_read10_and_compare/index /autoapi/testapp/scripts/full_read_compare/index /autoapi/testapp/scripts/full_write_read_compare/index /autoapi/testapp/scripts/loop_write_and_read_compare/index /autoapi/testapp/scripts/test_app1/index /autoapi/testapp/scripts/test_app2/index /autoapi/testapp/scripts/write10_and_compare/index /autoapi/testapp/scripts/write_and_erase/index Functions --------- .. autoapisummary:: testapp.scripts.get_test_scripts testapp.scripts.run_script testapp.scripts.run_test_script_file Package Contents ---------------- .. py:function:: get_test_scripts() -> dict[str, str] 테스트 스크립트를 반환합니다. :returns: 테스트 스크립트 딕셔너리 {테스트 이름: 스크립트 절대 경로} :rtype: Dict[str, str] .. py:function:: run_script(script_name: str, use_print: bool = False) -> bool 주어진 스크립트를 실행합니다. :param script_name: 실행할 스크립트 이름 :type script_name: str :param use_print: 콘솔 창에 출력할지 말지 결정 :type use_print: bool :returns: 스크립트 실행 성공 여부 :rtype: bool .. py:function:: run_test_script_file(list_file: str) 주어진 파일에 있는 테스트 스크립트를 순차적으로 실행합니다. :param list_file: 테스트 스크립트 목록 파일 :type list_file: str