Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion aw_scenario_runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,10 @@ def run(self) -> None:
self.results_manager.last_scenario, env_config
)[self._scenario_config["route_id"]]

self.run_scenario(route_config, env_config)
scenario_status = self.run_scenario(route_config, env_config)
logger.info(
f"Scenario iteration {self.curr_iteration} has concluded with the status of {'Success' if scenario_status else 'Failure'}"
)

# run the metric manager with the recorded file to calculate the driving score
driving_score = 0.0
Expand Down