diff --git a/test-crawler/requirements.pip b/test-crawler/requirements.pip index 8ee12a71..fda30757 100644 --- a/test-crawler/requirements.pip +++ b/test-crawler/requirements.pip @@ -1,2 +1,2 @@ -requestsrequests +requests pyyaml \ No newline at end of file diff --git a/test-crawler/workflow_scan.py b/test-crawler/workflow_scan.py index 1d16d457..b6766426 100644 --- a/test-crawler/workflow_scan.py +++ b/test-crawler/workflow_scan.py @@ -66,6 +66,8 @@ def scan_workflow(self): ) with open(TESTS_OUTPUT_TARGET, "w") as file: + file.write(f"Successfully get {self.runs_len} scheduled runs" + "\n") + file.write(f"{self.in_progress_num} runs are still in progress, {self.success_num} runs success and {self.failure_num} runs fail"+ "\n") file.write(pass_rate_string + "\n") print(pass_rate_string)