You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// Assert only the essential functionality for faster tests
138
190
assert!(
139
191
results.execute_reply_received,
140
-
"Expected to receive execute_reply from Python kernel, but didn't get one. The kernel is not executing code properly."
192
+
"Expected to receive execute_reply from Python kernel after {} attempts, but didn't get one. The kernel is not executing code properly.",
193
+
attempts_used
141
194
);
142
195
143
196
assert!(
144
197
results.stream_output_received,
145
-
"Expected to receive stream output from Python kernel, but didn't get any. The kernel is not producing stdout output."
198
+
"Expected to receive stream output from Python kernel after {} attempts, but didn't get any. The kernel is not producing stdout output.",
199
+
attempts_used
146
200
);
147
201
148
202
assert!(
149
203
results.expected_output_found,
150
-
"Expected to find 'Hello from Kallichore test!' and '2 + 3 = 5' in the kernel output, but didn't find both. The kernel executed but produced unexpected output. Actual collected output: {:?}",
204
+
"Expected to find 'Hello from Kallichore test!' and '2 + 3 = 5' in the kernel output after {} attempts, but didn't find both. The kernel executed but produced unexpected output. Actual collected output: {:?}",
// Assert only the essential functionality for faster domain socket tests
519
564
assert!(
520
565
results.execute_reply_received,
521
-
"Expected to receive execute_reply from Python kernel, but didn't get one. The kernel is not executing code properly."
566
+
"Expected to receive execute_reply from Python kernel after {} attempts, but didn't get one. The kernel is not executing code properly.",
567
+
attempts_used
522
568
);
523
569
524
570
assert!(
525
571
results.stream_output_received,
526
-
"Expected to receive stream output from Python kernel, but didn't get any. The kernel is not producing stdout output."
572
+
"Expected to receive stream output from Python kernel after {} attempts, but didn't get any. The kernel is not producing stdout output.",
573
+
attempts_used
527
574
);
528
575
529
576
assert!(
530
577
results.expected_output_found,
531
-
"Expected to find 'Hello from Kallichore test!' and '2 + 3 = 5' in the kernel output, but didn't find both. The kernel executed but produced unexpected output. Actual collected output: {:?}",
578
+
"Expected to find 'Hello from Kallichore test!' and '2 + 3 = 5' in the kernel output after {} attempts, but didn't find both. The kernel executed but produced unexpected output. Actual collected output: {:?}",
// Assert only the essential functionality for faster tests
726
764
assert!(
727
765
results.execute_reply_received,
728
-
"Expected to receive execute_reply from Python kernel, but didn't get one. The kernel is not executing code properly."
766
+
"Expected to receive execute_reply from Python kernel after {} attempts, but didn't get one. The kernel is not executing code properly.",
767
+
attempts_used
729
768
);
730
769
731
770
assert!(
732
771
results.stream_output_received,
733
-
"Expected to receive stream output from Python kernel, but didn't get any. The kernel is not producing stdout output."
772
+
"Expected to receive stream output from Python kernel after {} attempts, but didn't get any. The kernel is not producing stdout output.",
773
+
attempts_used
734
774
);
735
775
736
776
assert!(
737
777
results.expected_output_found,
738
-
"Expected to find 'Hello from Kallichore test!' and '2 + 3 = 5' in the kernel output, but didn't find both. The kernel executed but produced unexpected output. Actual collected output: {:?}",
778
+
"Expected to find 'Hello from Kallichore test!' and '2 + 3 = 5' in the kernel output after {} attempts, but didn't find both. The kernel executed but produced unexpected output. Actual collected output: {:?}",
// Assert only the essential functionality for faster tests
865
896
assert!(
866
897
results.execute_reply_received,
867
-
"Expected to receive execute_reply from Python kernel, but didn't get one. The kernel is not executing code properly."
898
+
"Expected to receive execute_reply from Python kernel after {} attempts, but didn't get one. The kernel is not executing code properly.",
899
+
attempts_used
868
900
);
869
901
870
902
assert!(
871
903
results.stream_output_received,
872
-
"Expected to receive stream output from Python kernel, but didn't get any. The kernel is not producing stdout output."
904
+
"Expected to receive stream output from Python kernel after {} attempts, but didn't get any. The kernel is not producing stdout output.",
905
+
attempts_used
873
906
);
874
907
875
908
assert!(
876
909
results.expected_output_found,
877
-
"Expected to find 'Hello from Kallichore test!' and '2 + 3 = 5' in the kernel output, but didn't find both. The kernel executed but produced unexpected output. Actual collected output: {:?}",
910
+
"Expected to find 'Hello from Kallichore test!' and '2 + 3 = 5' in the kernel output after {} attempts, but didn't find both. The kernel executed but produced unexpected output. Actual collected output: {:?}",
0 commit comments