判断是否快速分析模式 :return:
()
| 30 | class QuickScan(object): |
| 31 | @staticmethod |
| 32 | def is_quick_scan(): |
| 33 | """ |
| 34 | 判断是否快速分析模式 |
| 35 | :return: |
| 36 | """ |
| 37 | if os.getenv("TCA_QUICK_SCAN") == "True": |
| 38 | return True |
| 39 | else: |
| 40 | return False |
| 41 | |
| 42 | @staticmethod |
| 43 | def get_task_json_files(config_dir, languages): |
no outgoing calls
no test coverage detected