We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 902ad10 commit a3a1e40Copy full SHA for a3a1e40
iot/api-client/mqtt_example/cloudiot_mqtt_example_test.py
@@ -184,6 +184,9 @@ def test_gateway_send_data_for_device(
184
185
out, _ = capsys.readouterr()
186
assert 'Publishing message 5/5' in out
187
+ assert 'Received message' in out
188
+ # We know we sometimes get 'Out of memory' in the output.
189
+ # We'd like to know when this occurs with verbose log output.
190
assert 'Out of memory' not in out # Indicates could not connect
191
192
iot/api-client/mqtt_example/pytest.ini
@@ -0,0 +1,2 @@
1
+[pytest]
2
+addopts = -vv
0 commit comments