Skip to content

Commit

Permalink
Debug
Browse files Browse the repository at this point in the history
  • Loading branch information
yhaliaw committed Aug 9, 2024
1 parent 755ddc2 commit c8b5021
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/manager/runner_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -188,6 +188,10 @@ def delete_runners(
metrics = []
for runner in runners_list:
metrics.append(self._cloud.delete_runner(id=runner.id, remove_token=remove_token))

# TODO: DEBUG
import pytest
pytest.set_trace()

return self._issue_runner_metrics(metrics=metrics)

Expand All @@ -202,6 +206,9 @@ def _issue_runner_metrics(self, metrics: Iterator[RunnerMetrics]) -> IssuedMetri
total_stats: IssuedMetricEventsStats = {}

for extracted_metrics in metrics:
# TODO: DEBUG
import pytest
pytest.set_trace()
try:
job_metrics = github_metrics.job(
github_client=self._github.github,
Expand Down

0 comments on commit c8b5021

Please sign in to comment.