Skip to content

Commit bb34000

Browse files
authored
Merge branch 'master' into faster-info-retrieval
2 parents da98224 + 26b643d commit bb34000

File tree

3 files changed

+10
-6
lines changed

3 files changed

+10
-6
lines changed

README.md

+4-2
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ You can use this system to prepare your agent for the CARLA Challenge.
1111
Scenarios can be defined through a Python interface, and with the newest version
1212
the scenario_runner also the upcoming [OpenSCENARIO](http://www.openscenario.org/) standard and [OpenSCENARIO 2.0](https://www.asam.net/standards/detail/openscenario/v200/) standard is supported.
1313

14+
[Read the documentation here](https://scenario-runner.readthedocs.io/en/latest/).
15+
1416
[![Scenario_Runner for CARLA](Docs/img/scenario_runner_video.png)](https://youtu.be/ChmF8IFagpo?t=68)
1517

1618
Getting the ScenarioRunner
@@ -22,7 +24,7 @@ branch contains the latest fixes and features, and may be required to use the la
2224
It is important to also consider the release version that has to match the CARLA version.
2325

2426
* [Version 0.9.15](https://github.com/carla-simulator/scenario_runner/releases/tag/v0.9.15) and the 0.9.15 Branch: Compatible with [CARLA 0.9.15](https://github.com/carla-simulator/carla/releases/tag/0.9.15)
25-
* [Version 0.9.13](https://github.com/carla-simulator/scenario_runner/releases/tag/v0.9.13) and the 0.9.13 Branch: Compatible with [CARLA 0.9.13](https://github.com/carla-simulator/carla/releases/tag/0.9.13)
27+
* [Version 0.9.13](https://github.com/carla-simulator/scenario_runner/releases/tag/v0.9.13) and the 0.9.13 Branch: Compatible with [CARLA 0.9.13](https://github.com/carla-simulator/carla/releases/tag/0.9.13) and [CARLA 0.9.14](https://github.com/carla-simulator/carla/releases/tag/0.9.14)
2628
* [Version 0.9.12](https://github.com/carla-simulator/scenario_runner/releases/tag/v0.9.12) and the 0.9.12 Branch: Compatible with [CARLA 0.9.12](https://github.com/carla-simulator/carla/releases/tag/0.9.12)
2729
* [Version 0.9.11](https://github.com/carla-simulator/scenario_runner/releases/tag/v0.9.11) and the 0.9.11 Branch: Compatible with [CARLA 0.9.11](https://github.com/carla-simulator/carla/releases/tag/0.9.11)
2830
* [Version 0.9.10](https://github.com/carla-simulator/scenario_runner/releases/tag/v0.9.10) and the 0.9.10 Branch: Compatible with [CARLA 0.9.10](https://github.com/carla-simulator/carla/releases/tag/0.9.10)
@@ -40,7 +42,7 @@ Currently no build is required, as all code is in Python.
4042
Using the ScenarioRunner
4143
------------------------
4244

43-
Please take a look at our [Getting started](Docs/getting_scenariorunner.md)
45+
Please take a look at our [Getting started](https://scenario-runner.readthedocs.io/en/latest/getting_scenariorunner/)
4446
documentation.
4547

4648
Challenge Evaluation

scenario_runner.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -200,9 +200,9 @@ def _cleanup(self):
200200
except RuntimeError:
201201
sys.exit(-1)
202202

203-
self.manager.cleanup()
203+
# self.manager.cleanup()
204204

205-
CarlaDataProvider.cleanup()
205+
# CarlaDataProvider.cleanup()
206206

207207
for i, _ in enumerate(self.ego_vehicles):
208208
if self.ego_vehicles[i]:
@@ -660,4 +660,4 @@ def main():
660660

661661

662662
if __name__ == "__main__":
663-
sys.exit(main())
663+
sys.exit(main())

srunner/scenariomanager/scenarioatomics/atomic_behaviors.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -4593,7 +4593,9 @@ def update(self):
45934593
new_status = py_trees.common.Status.SUCCESS
45944594
except: # pylint: disable=bare-except
45954595
print("ActorSource unable to spawn actor")
4596-
4596+
new_status = py_trees.common.Status.FAILURE
4597+
finally:
4598+
return new_status
45974599

45984600
class SwitchWrongDirectionTest(AtomicBehavior):
45994601

0 commit comments

Comments
 (0)