Skip to content

Commit 6986230

Browse files
committed
logging
1 parent c4c7b50 commit 6986230

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

test/end2end/session/test_stop.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -267,10 +267,10 @@ def skill_not_active():
267267
# confirm all expected messages are sent
268268
expected_messages = [
269269
"recognizer_loop:utterance",
270+
# global stop trigger
270271
"mycroft.stop",
271272
"ovos.common_play.stop",
272273
"ovos.common_play.stop.response",
273-
# global stop trigger
274274
f"{self.skill_id}.stop", # internal, @killable_events
275275
f"{self.skill_id}.stop.response", # skill reporting nothing to stop
276276
f"{self.new_skill_id}.stop", # internal, @killable_events
@@ -289,6 +289,9 @@ def skill_not_active():
289289
self.assertTrue(m in mtypes)
290290

291291
# sanity check stop triggered
292+
print(mtypes) # debug, see it in github actions before the exception...
293+
for m in mtypes:
294+
print(m) # debug, see it in github actions before the exception...
292295
self.assertEqual(messages[-1].data["utterance"], "old stop called")
293296

294297
messages = []

0 commit comments

Comments
 (0)