Skip to content

Commit 523482e

Browse files
Merge branch 'main' into update-flight_planning
2 parents 8e8d8a2 + 2ad7d98 commit 523482e

File tree

6 files changed

+18
-18
lines changed

6 files changed

+18
-18
lines changed

NEXT_RELEASE_NOTES.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,12 +33,10 @@ The release notes should contain at least the following sections:
3333

3434
--------------------------------------------------------------------------------------------------------------------
3535

36-
# Release Notes for v0.26.0
36+
# Release Notes for v0.27.0
3737

3838
## Mandatory migration tasks
3939

4040
## Optional migration tasks
4141

4242
## Important information
43-
44-
* New timing report artifact added to uss_qualifier

monitoring/uss_qualifier/scenarios/astm/utm/dss/op_intent_ref_access_control.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -139,6 +139,7 @@ def run(self, context: ExecutionContext):
139139
"clean_workspace",
140140
"Could not clean up workspace, skipping scenario",
141141
)
142+
self.end_test_case()
142143

143144
self.end_test_scenario()
144145

monitoring/uss_qualifier/scenarios/astm/utm/nominal_planning/solo_happy_path.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,5 @@
66
class SoloHappyPath(TestScenario):
77
@deprecated(deprecated_in="0.26.0")
88
def run(self, context):
9-
pass
9+
self.begin_test_scenario(context)
10+
self.end_test_scenario()

monitoring/uss_qualifier/scenarios/scenario.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -554,6 +554,7 @@ def end_test_scenario(self) -> None:
554554
def go_to_cleanup(self) -> None:
555555
self._expect_phase(
556556
{
557+
ScenarioPhase.NotStarted,
557558
ScenarioPhase.ReadyForTestCase,
558559
ScenarioPhase.ReadyForTestStep,
559560
ScenarioPhase.RunningTestStep,

monitoring/uss_qualifier/scenarios/scenario_test/generic_test_scenario_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -518,7 +518,7 @@ def test_go_to_cleanup():
518518

519519
# This is a list of step to do, in order, and if go_to_cleanup should works
520520
steps_and_result = [
521-
("nop", False),
521+
("nop", True),
522522
("begin_test_scenario", True),
523523
("begin_test_case", True),
524524
("begin_test_step", True),

uv.lock

Lines changed: 12 additions & 13 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)