Skip to content

Commit

Permalink
TODO
Browse files Browse the repository at this point in the history
  • Loading branch information
aBozowski committed Oct 19, 2023
1 parent b1c7a30 commit 0fcbb10
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions src/tools/interop/idt/idt.py
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ def zip_artifacts(self) -> None:
'zip',
root_dir=self.artifact_dir)
output_zip = shutil.move(archive_file, self.artifact_dir_parent)
print(f'Output zip: {output_zip}')
border_print(f'Output zip: {output_zip}')

def command_capture(self, args: argparse.Namespace) -> None:

Expand All @@ -188,9 +188,10 @@ def command_capture(self, args: argparse.Namespace) -> None:
asyncio.run(EcosystemController.stop())
asyncio.run(EcosystemController.analyze())

border_print("Compressing artifacts, this may take some time!")
self.zip_artifacts()

# TODO: Write error report to artifacts
if EcosystemController.has_errors():
border_print("Errors seen this run:")
EcosystemController.error_report()

border_print("Compressing artifacts...")
self.zip_artifacts()

0 comments on commit 0fcbb10

Please sign in to comment.