-
Notifications
You must be signed in to change notification settings - Fork 22
/
.test_durations
2058 lines (2058 loc) · 305 KB
/
.test_durations
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"bluesky_queueserver/manager/tests/test_annotation_decorator.py::test_annotation_dectorator_01[custom_annotation0]": 0.001585119985975325,
"bluesky_queueserver/manager/tests/test_annotation_decorator.py::test_annotation_dectorator_01[custom_annotation1]": 0.0012312430189922452,
"bluesky_queueserver/manager/tests/test_annotation_decorator.py::test_annotation_dectorator_01[custom_annotation2]": 0.0014277269947342575,
"bluesky_queueserver/manager/tests/test_annotation_decorator.py::test_annotation_dectorator_01[custom_annotation3]": 0.0017088230233639479,
"bluesky_queueserver/manager/tests/test_annotation_decorator.py::test_annotation_dectorator_01[custom_annotation4]": 0.001670540019404143,
"bluesky_queueserver/manager/tests/test_annotation_decorator.py::test_annotation_dectorator_01[custom_annotation5]": 0.0015929439978208393,
"bluesky_queueserver/manager/tests/test_annotation_decorator.py::test_annotation_dectorator_01[custom_annotation6]": 0.0014493080088868737,
"bluesky_queueserver/manager/tests/test_annotation_decorator.py::test_annotation_dectorator_01[custom_annotation7]": 0.0014176009863149375,
"bluesky_queueserver/manager/tests/test_annotation_decorator.py::test_annotation_dectorator_01[custom_annotation8]": 0.0013347459898795933,
"bluesky_queueserver/manager/tests/test_annotation_decorator.py::test_annotation_dectorator_01[custom_annotation9]": 0.0013140839873813093,
"bluesky_queueserver/manager/tests/test_annotation_decorator.py::test_annotation_dectorator_02[custom_annotation0]": 0.0011828459973912686,
"bluesky_queueserver/manager/tests/test_annotation_decorator.py::test_annotation_dectorator_02[custom_annotation1]": 0.0014197800192050636,
"bluesky_queueserver/manager/tests/test_annotation_decorator.py::test_annotation_dectorator_03[custom_annotation0]": 0.0011532270000316203,
"bluesky_queueserver/manager/tests/test_annotation_decorator.py::test_annotation_dectorator_04[custom_annotation0]": 0.0012390250340104103,
"bluesky_queueserver/manager/tests/test_annotation_decorator.py::test_annotation_dectorator_05[custom_annotation0]": 0.0013889989932067692,
"bluesky_queueserver/manager/tests/test_annotation_decorator.py::test_annotation_dectorator_06[custom_annotation0]": 0.001956901978701353,
"bluesky_queueserver/manager/tests/test_annotation_decorator.py::test_annotation_dectorator_07[custom_annotation0]": 0.0010462820064276457,
"bluesky_queueserver/manager/tests/test_annotation_decorator.py::test_annotation_dectorator_08": 0.0010072000150103122,
"bluesky_queueserver/manager/tests/test_annotation_decorator.py::test_annotation_dectorator_09_fail[custom_annotation0-ValidationError-Additional properties are not allowed \\\\('descriptions' was unexpected\\\\)]": 0.0026608530315570533,
"bluesky_queueserver/manager/tests/test_annotation_decorator.py::test_annotation_dectorator_09_fail[custom_annotation1-ValueError-\\\\['no_such_parameter'] are not in the signature of function]": 0.002107248001266271,
"bluesky_queueserver/manager/tests/test_annotation_decorator.py::test_annotation_dectorator_09_fail[custom_annotation2-ValidationError-Additional properties are not allowed \\\\('descriptions' was unexpected\\\\)]": 0.00250364001840353,
"bluesky_queueserver/manager/tests/test_annotation_decorator.py::test_annotation_dectorator_09_fail[custom_annotation3-ValidationError-Additional properties are not allowed \\\\('some_devices' was unexpected\\\\)]": 0.001903500990010798,
"bluesky_queueserver/manager/tests/test_annotation_decorator.py::test_annotation_dectorator_09_fail[custom_annotation4-ValidationError-\\\\(1, 2, 3\\\\) is not valid]": 0.001984252012334764,
"bluesky_queueserver/manager/tests/test_annotation_decorator.py::test_annotation_dectorator_09_fail[custom_annotation5-ValidationError-'unsupported_list' is not valid]": 0.0016776179836597294,
"bluesky_queueserver/manager/tests/test_annotation_decorator.py::test_annotation_dectorator_09_fail[custom_annotation6-ValidationError-None is not valid under any of the given schemas]": 0.0015963570040185004,
"bluesky_queueserver/manager/tests/test_annotation_decorator.py::test_annotation_dectorator_09_fail[custom_annotation7-ValidationError-'Plans.' does not match any of the regexes]": 0.0015507400094065815,
"bluesky_queueserver/manager/tests/test_annotation_decorator.py::test_annotation_dectorator_09_fail[custom_annotation8-ValidationError-'abc' is not of type 'boolean']": 0.0015624709776602685,
"bluesky_queueserver/manager/tests/test_annotation_decorator.py::test_annotation_dectorator_09_fail[custom_annotation9-ValidationError-10 is not of type 'boolean']": 0.0013475910236593336,
"bluesky_queueserver/manager/tests/test_annotation_decorator.py::test_annotation_dectorator_10": 0.0016967559640761465,
"bluesky_queueserver/manager/tests/test_comms.py::test_CommJsonRpcError_1": 0.0004628980241250247,
"bluesky_queueserver/manager/tests/test_comms.py::test_CommJsonRpcError_2": 0.0005743159854318947,
"bluesky_queueserver/manager/tests/test_comms.py::test_CommJsonRpcError_3_fail": 0.0006053939869161695,
"bluesky_queueserver/manager/tests/test_comms.py::test_PipeJsonRpcReceive_1": 0.15366244499455206,
"bluesky_queueserver/manager/tests/test_comms.py::test_PipeJsonRpcReceive_2[method1-params2-5-False]": 0.0033445149892941117,
"bluesky_queueserver/manager/tests/test_comms.py::test_PipeJsonRpcReceive_2[method2-params3-15-False]": 0.0035387889947742224,
"bluesky_queueserver/manager/tests/test_comms.py::test_PipeJsonRpcReceive_2[method2-params4-15-False]": 0.003707394003868103,
"bluesky_queueserver/manager/tests/test_comms.py::test_PipeJsonRpcReceive_2[method2-params5-12-False]": 0.0037921160110272467,
"bluesky_queueserver/manager/tests/test_comms.py::test_PipeJsonRpcReceive_2[method3-params6-20-False]": 0.003965423995396122,
"bluesky_queueserver/manager/tests/test_comms.py::test_PipeJsonRpcReceive_2[method3-params7-18-False]": 0.00445795597624965,
"bluesky_queueserver/manager/tests/test_comms.py::test_PipeJsonRpcReceive_2[method4-params8-20-False]": 0.005946377001237124,
"bluesky_queueserver/manager/tests/test_comms.py::test_PipeJsonRpcReceive_2[method4-params9-19-False]": 0.004287710995413363,
"bluesky_queueserver/manager/tests/test_comms.py::test_PipeJsonRpcReceive_2[method_handler1-params0-5-False]": 0.00898269601748325,
"bluesky_queueserver/manager/tests/test_comms.py::test_PipeJsonRpcReceive_2[method_handler1-params1-5-True]": 1.5111031259875745,
"bluesky_queueserver/manager/tests/test_comms.py::test_PipeJsonRpcReceive_3": 0.002329146984266117,
"bluesky_queueserver/manager/tests/test_comms.py::test_PipeJsonRpcReceive_4": 0.002386067993938923,
"bluesky_queueserver/manager/tests/test_comms.py::test_PipeJsonRpcReceive_5[False]": 3.029591085971333,
"bluesky_queueserver/manager/tests/test_comms.py::test_PipeJsonRpcReceive_5[True]": 4.032606415974442,
"bluesky_queueserver/manager/tests/test_comms.py::test_PipeJsonRpcReceive_6_failing": 0.015415494999615476,
"bluesky_queueserver/manager/tests/test_comms.py::test_PipeJsonRpcReceive_7_failing": 0.0024201939813792706,
"bluesky_queueserver/manager/tests/test_comms.py::test_PipeJsonRpcReceive_8_failing": 0.5036630599934142,
"bluesky_queueserver/manager/tests/test_comms.py::test_PipeJsonRpcSendAsync_1": 0.1577032110071741,
"bluesky_queueserver/manager/tests/test_comms.py::test_PipeJsonRpcSendAsync_2[method1-params2-5-False]": 0.013303578016348183,
"bluesky_queueserver/manager/tests/test_comms.py::test_PipeJsonRpcSendAsync_2[method2-params3-15-False]": 0.010199865006143227,
"bluesky_queueserver/manager/tests/test_comms.py::test_PipeJsonRpcSendAsync_2[method2-params4-15-False]": 0.00865118094952777,
"bluesky_queueserver/manager/tests/test_comms.py::test_PipeJsonRpcSendAsync_2[method2-params5-12-False]": 0.006299029977526516,
"bluesky_queueserver/manager/tests/test_comms.py::test_PipeJsonRpcSendAsync_2[method3-params6-20-False]": 0.005908155988436192,
"bluesky_queueserver/manager/tests/test_comms.py::test_PipeJsonRpcSendAsync_2[method3-params7-18-False]": 0.005673876032233238,
"bluesky_queueserver/manager/tests/test_comms.py::test_PipeJsonRpcSendAsync_2[method4-params8-20-False]": 0.005317406001267955,
"bluesky_queueserver/manager/tests/test_comms.py::test_PipeJsonRpcSendAsync_2[method4-params9-19-False]": 0.006375555007252842,
"bluesky_queueserver/manager/tests/test_comms.py::test_PipeJsonRpcSendAsync_2[method_handler1-params0-5-False]": 0.01512863498646766,
"bluesky_queueserver/manager/tests/test_comms.py::test_PipeJsonRpcSendAsync_2[method_handler1-params1-5-True]": 0.014804735983489081,
"bluesky_queueserver/manager/tests/test_comms.py::test_PipeJsonRpcSendAsync_3": 0.5194347169599496,
"bluesky_queueserver/manager/tests/test_comms.py::test_PipeJsonRpcSendAsync_4": 0.5082289070123807,
"bluesky_queueserver/manager/tests/test_comms.py::test_PipeJsonRpcSendAsync_5": 0.908460612030467,
"bluesky_queueserver/manager/tests/test_comms.py::test_PipeJsonRpcSendAsync_6": 1.0112721700279508,
"bluesky_queueserver/manager/tests/test_comms.py::test_PipeJsonRpcSendAsync_7_fail": 0.004799662943696603,
"bluesky_queueserver/manager/tests/test_comms.py::test_PipeJsonRpcSendAsync_8_fail": 0.004276772000594065,
"bluesky_queueserver/manager/tests/test_comms.py::test_ZMQCommSendAsync_1[False]": 0.00493315199855715,
"bluesky_queueserver/manager/tests/test_comms.py::test_ZMQCommSendAsync_1[True]": 0.009447447984712198,
"bluesky_queueserver/manager/tests/test_comms.py::test_ZMQCommSendAsync_2[False]": 0.008160306024365127,
"bluesky_queueserver/manager/tests/test_comms.py::test_ZMQCommSendAsync_2[True]": 0.011948430008487776,
"bluesky_queueserver/manager/tests/test_comms.py::test_ZMQCommSendAsync_3[False]": 0.1096240869956091,
"bluesky_queueserver/manager/tests/test_comms.py::test_ZMQCommSendAsync_3[True]": 0.11602173297433183,
"bluesky_queueserver/manager/tests/test_comms.py::test_ZMQCommSendAsync_4[0.1-False0-False]": 3.009821865998674,
"bluesky_queueserver/manager/tests/test_comms.py::test_ZMQCommSendAsync_4[0.1-False0-True]": 3.0163954540039413,
"bluesky_queueserver/manager/tests/test_comms.py::test_ZMQCommSendAsync_4[0.1-False1-False]": 3.012584300013259,
"bluesky_queueserver/manager/tests/test_comms.py::test_ZMQCommSendAsync_4[0.1-False1-True]": 3.021654323034454,
"bluesky_queueserver/manager/tests/test_comms.py::test_ZMQCommSendAsync_4[0.1-False2-False]": 3.0180362880055327,
"bluesky_queueserver/manager/tests/test_comms.py::test_ZMQCommSendAsync_4[0.1-False2-True]": 3.013162191986339,
"bluesky_queueserver/manager/tests/test_comms.py::test_ZMQCommSendAsync_4[0.1-False3-False]": 3.0122510039946064,
"bluesky_queueserver/manager/tests/test_comms.py::test_ZMQCommSendAsync_4[0.1-False3-True]": 3.0193297479709145,
"bluesky_queueserver/manager/tests/test_comms.py::test_ZMQCommSendAsync_4[0.1-None-False]": 3.0155683619959746,
"bluesky_queueserver/manager/tests/test_comms.py::test_ZMQCommSendAsync_4[0.1-None-True]": 3.019196473993361,
"bluesky_queueserver/manager/tests/test_comms.py::test_ZMQCommSendAsync_4[0.1-True-False]": 3.016374664992327,
"bluesky_queueserver/manager/tests/test_comms.py::test_ZMQCommSendAsync_4[0.1-True-True]": 3.014182097016601,
"bluesky_queueserver/manager/tests/test_comms.py::test_ZMQCommSendAsync_4[2-False0-False]": 4.017625209031394,
"bluesky_queueserver/manager/tests/test_comms.py::test_ZMQCommSendAsync_4[2-False0-True]": 4.017379216995323,
"bluesky_queueserver/manager/tests/test_comms.py::test_ZMQCommSendAsync_4[2-False1-False]": 4.0184471019601915,
"bluesky_queueserver/manager/tests/test_comms.py::test_ZMQCommSendAsync_4[2-False1-True]": 4.02089815097861,
"bluesky_queueserver/manager/tests/test_comms.py::test_ZMQCommSendAsync_4[2-False2-False]": 4.014768458029721,
"bluesky_queueserver/manager/tests/test_comms.py::test_ZMQCommSendAsync_4[2-False2-True]": 4.020471175987041,
"bluesky_queueserver/manager/tests/test_comms.py::test_ZMQCommSendAsync_4[2-False3-False]": 4.02103154399083,
"bluesky_queueserver/manager/tests/test_comms.py::test_ZMQCommSendAsync_4[2-False3-True]": 4.020539460994769,
"bluesky_queueserver/manager/tests/test_comms.py::test_ZMQCommSendAsync_4[2-None-False]": 4.021392594993813,
"bluesky_queueserver/manager/tests/test_comms.py::test_ZMQCommSendAsync_4[2-None-True]": 4.020538920012768,
"bluesky_queueserver/manager/tests/test_comms.py::test_ZMQCommSendAsync_4[2-True-False]": 4.0231996959482785,
"bluesky_queueserver/manager/tests/test_comms.py::test_ZMQCommSendAsync_4[2-True-True]": 4.012671511009103,
"bluesky_queueserver/manager/tests/test_comms.py::test_ZMQCommSendAsync_5[2000]": 3.0100643550395034,
"bluesky_queueserver/manager/tests/test_comms.py::test_ZMQCommSendAsync_5[5000]": 3.012798131967429,
"bluesky_queueserver/manager/tests/test_comms.py::test_ZMQCommSendAsync_5[None]": 3.0070202950155362,
"bluesky_queueserver/manager/tests/test_comms.py::test_ZMQCommSendAsync_6_fail": 0.004683756007580087,
"bluesky_queueserver/manager/tests/test_comms.py::test_ZMQCommSendThreads_1[False-False]": 0.10528543696273118,
"bluesky_queueserver/manager/tests/test_comms.py::test_ZMQCommSendThreads_1[False-True]": 0.10819039100897498,
"bluesky_queueserver/manager/tests/test_comms.py::test_ZMQCommSendThreads_1[True-False]": 0.005178628984140232,
"bluesky_queueserver/manager/tests/test_comms.py::test_ZMQCommSendThreads_1[True-True]": 0.006750562024535611,
"bluesky_queueserver/manager/tests/test_comms.py::test_ZMQCommSendThreads_2[False-False]": 0.20929728299961425,
"bluesky_queueserver/manager/tests/test_comms.py::test_ZMQCommSendThreads_2[False-True]": 0.2094087919977028,
"bluesky_queueserver/manager/tests/test_comms.py::test_ZMQCommSendThreads_2[True-False]": 0.0103595299879089,
"bluesky_queueserver/manager/tests/test_comms.py::test_ZMQCommSendThreads_2[True-True]": 0.015687253966461867,
"bluesky_queueserver/manager/tests/test_comms.py::test_ZMQCommSendThreads_3[False-False]": 0.20909939901321195,
"bluesky_queueserver/manager/tests/test_comms.py::test_ZMQCommSendThreads_3[False-True]": 0.21739360599895008,
"bluesky_queueserver/manager/tests/test_comms.py::test_ZMQCommSendThreads_3[True-False]": 0.11202814997523092,
"bluesky_queueserver/manager/tests/test_comms.py::test_ZMQCommSendThreads_3[True-True]": 0.1152864929754287,
"bluesky_queueserver/manager/tests/test_comms.py::test_ZMQCommSendThreads_4[0.1-False-False0-False]": 3.0185789249953814,
"bluesky_queueserver/manager/tests/test_comms.py::test_ZMQCommSendThreads_4[0.1-False-False0-True]": 3.118362884997623,
"bluesky_queueserver/manager/tests/test_comms.py::test_ZMQCommSendThreads_4[0.1-False-False1-False]": 3.0164633590029553,
"bluesky_queueserver/manager/tests/test_comms.py::test_ZMQCommSendThreads_4[0.1-False-False1-True]": 3.118463614024222,
"bluesky_queueserver/manager/tests/test_comms.py::test_ZMQCommSendThreads_4[0.1-True-False0-False]": 3.0099229180195834,
"bluesky_queueserver/manager/tests/test_comms.py::test_ZMQCommSendThreads_4[0.1-True-False0-True]": 3.012101994972909,
"bluesky_queueserver/manager/tests/test_comms.py::test_ZMQCommSendThreads_4[0.1-True-False1-False]": 3.009998865047237,
"bluesky_queueserver/manager/tests/test_comms.py::test_ZMQCommSendThreads_4[0.1-True-False1-True]": 3.010350743017625,
"bluesky_queueserver/manager/tests/test_comms.py::test_ZMQCommSendThreads_4[0.1-True-None-False]": 3.0129985850071535,
"bluesky_queueserver/manager/tests/test_comms.py::test_ZMQCommSendThreads_4[0.1-True-None-True]": 3.0186283189977985,
"bluesky_queueserver/manager/tests/test_comms.py::test_ZMQCommSendThreads_4[0.1-True-True-False]": 3.011999195005046,
"bluesky_queueserver/manager/tests/test_comms.py::test_ZMQCommSendThreads_4[0.1-True-True-True]": 3.013070633984171,
"bluesky_queueserver/manager/tests/test_comms.py::test_ZMQCommSendThreads_4[2-False-False0-False]": 4.11456782699679,
"bluesky_queueserver/manager/tests/test_comms.py::test_ZMQCommSendThreads_4[2-False-False0-True]": 4.114013454993255,
"bluesky_queueserver/manager/tests/test_comms.py::test_ZMQCommSendThreads_4[2-False-False1-False]": 4.115185909991851,
"bluesky_queueserver/manager/tests/test_comms.py::test_ZMQCommSendThreads_4[2-False-False1-True]": 4.111875535018044,
"bluesky_queueserver/manager/tests/test_comms.py::test_ZMQCommSendThreads_4[2-True-False0-False]": 4.015332847018726,
"bluesky_queueserver/manager/tests/test_comms.py::test_ZMQCommSendThreads_4[2-True-False0-True]": 4.0191445750242565,
"bluesky_queueserver/manager/tests/test_comms.py::test_ZMQCommSendThreads_4[2-True-False1-False]": 4.016603724012384,
"bluesky_queueserver/manager/tests/test_comms.py::test_ZMQCommSendThreads_4[2-True-False1-True]": 4.0193982949713245,
"bluesky_queueserver/manager/tests/test_comms.py::test_ZMQCommSendThreads_4[2-True-None-False]": 4.016407289978815,
"bluesky_queueserver/manager/tests/test_comms.py::test_ZMQCommSendThreads_4[2-True-None-True]": 4.013242430984974,
"bluesky_queueserver/manager/tests/test_comms.py::test_ZMQCommSendThreads_4[2-True-True-False]": 4.014935644023353,
"bluesky_queueserver/manager/tests/test_comms.py::test_ZMQCommSendThreads_4[2-True-True-True]": 4.011719375994289,
"bluesky_queueserver/manager/tests/test_comms.py::test_ZMQCommSendThreads_5[2000]": 3.0096338170114905,
"bluesky_queueserver/manager/tests/test_comms.py::test_ZMQCommSendThreads_5[5000]": 3.0288285089773126,
"bluesky_queueserver/manager/tests/test_comms.py::test_ZMQCommSendThreads_5[None]": 3.007385092001641,
"bluesky_queueserver/manager/tests/test_comms.py::test_ZMQCommSendThreads_6_fail": 0.001106621028156951,
"bluesky_queueserver/manager/tests/test_comms.py::test_generate_zmq_keys": 0.002277055027661845,
"bluesky_queueserver/manager/tests/test_comms.py::test_validate_zmq_key[10]": 0.0014322370116133243,
"bluesky_queueserver/manager/tests/test_comms.py::test_validate_zmq_key[None]": 0.0017421510128770024,
"bluesky_queueserver/manager/tests/test_comms.py::test_validate_zmq_key[]": 0.001476495002862066,
"bluesky_queueserver/manager/tests/test_comms.py::test_validate_zmq_key[abc]": 0.0014716099831275642,
"bluesky_queueserver/manager/tests/test_comms.py::test_validate_zmq_key[wt8[6a8eoXFRVL<l2JBbOzs(hcI%kRBIr0Do/eL']": 0.0015420569689013064,
"bluesky_queueserver/manager/tests/test_config.py::test_config_schema_01[config_str0-config_dict0-True]": 0.0897264700033702,
"bluesky_queueserver/manager/tests/test_config.py::test_config_schema_01[config_str1-config_dict1-True]": 0.05210483001428656,
"bluesky_queueserver/manager/tests/test_config.py::test_config_schema_01[config_str10-config_dict10-True]": 0.051130812003975734,
"bluesky_queueserver/manager/tests/test_config.py::test_config_schema_01[config_str11-config_dict11-True]": 0.05246247601462528,
"bluesky_queueserver/manager/tests/test_config.py::test_config_schema_01[config_str12-None-False]": 0.05125549100921489,
"bluesky_queueserver/manager/tests/test_config.py::test_config_schema_01[config_str13-None-False]": 0.051530884025851265,
"bluesky_queueserver/manager/tests/test_config.py::test_config_schema_01[config_str14-None-False]": 0.05150670697912574,
"bluesky_queueserver/manager/tests/test_config.py::test_config_schema_01[config_str15-None-False]": 0.05260854397783987,
"bluesky_queueserver/manager/tests/test_config.py::test_config_schema_01[config_str16-None-False]": 0.05632651798077859,
"bluesky_queueserver/manager/tests/test_config.py::test_config_schema_01[config_str17-config_dict17-True]": 0.07631784799741581,
"bluesky_queueserver/manager/tests/test_config.py::test_config_schema_01[config_str18-config_dict18-True]": 0.05781893301173113,
"bluesky_queueserver/manager/tests/test_config.py::test_config_schema_01[config_str19-None-False]": 0.054765847948146984,
"bluesky_queueserver/manager/tests/test_config.py::test_config_schema_01[config_str2-config_dict2-True]": 0.0506082340143621,
"bluesky_queueserver/manager/tests/test_config.py::test_config_schema_01[config_str20-None-False]": 0.05040677997749299,
"bluesky_queueserver/manager/tests/test_config.py::test_config_schema_01[config_str21-None-False]": 0.052374620048794895,
"bluesky_queueserver/manager/tests/test_config.py::test_config_schema_01[config_str22-None-False]": 0.05173186000320129,
"bluesky_queueserver/manager/tests/test_config.py::test_config_schema_01[config_str23-config_dict23-True]": 0.19823792099487036,
"bluesky_queueserver/manager/tests/test_config.py::test_config_schema_01[config_str24-None-False]": 0.10066855201148428,
"bluesky_queueserver/manager/tests/test_config.py::test_config_schema_01[config_str25-config_dict25-True]": 0.05237851705169305,
"bluesky_queueserver/manager/tests/test_config.py::test_config_schema_01[config_str26-config_dict26-True]": 0.05049436099943705,
"bluesky_queueserver/manager/tests/test_config.py::test_config_schema_01[config_str3-config_dict3-True]": 0.05344993300968781,
"bluesky_queueserver/manager/tests/test_config.py::test_config_schema_01[config_str4-config_dict4-True]": 0.05563975096447393,
"bluesky_queueserver/manager/tests/test_config.py::test_config_schema_01[config_str5-config_dict5-True]": 0.05136819198378362,
"bluesky_queueserver/manager/tests/test_config.py::test_config_schema_01[config_str6-config_dict6-True]": 0.05025828003999777,
"bluesky_queueserver/manager/tests/test_config.py::test_config_schema_01[config_str7-config_dict7-True]": 0.050626342999748886,
"bluesky_queueserver/manager/tests/test_config.py::test_config_schema_01[config_str8-config_dict8-True]": 0.05146982701262459,
"bluesky_queueserver/manager/tests/test_config.py::test_config_schema_01[config_str9-config_dict9-True]": 0.05167484996491112,
"bluesky_queueserver/manager/tests/test_config.py::test_config_schema_02[empty_dir]": 0.0009332590270787477,
"bluesky_queueserver/manager/tests/test_config.py::test_config_schema_02[file]": 0.001243514008820057,
"bluesky_queueserver/manager/tests/test_config.py::test_config_schema_02[non_existing_dir]": 0.001115207007387653,
"bluesky_queueserver/manager/tests/test_console_monitor_cli.py::test_console_monitor_cli_parameters_1[both_fail]": 5.703972777992021,
"bluesky_queueserver/manager/tests/test_console_monitor_cli.py::test_console_monitor_cli_parameters_1[both_success]": 5.779160451958887,
"bluesky_queueserver/manager/tests/test_console_monitor_cli.py::test_console_monitor_cli_parameters_1[env_var]": 5.7140507900039665,
"bluesky_queueserver/manager/tests/test_console_monitor_cli.py::test_console_monitor_cli_parameters_1[none]": 5.72560118601541,
"bluesky_queueserver/manager/tests/test_console_monitor_cli.py::test_console_monitor_cli_parameters_1[parameter]": 5.587988346000202,
"bluesky_queueserver/manager/tests/test_conversions.py::test_read_cell_parameter['det1', 'det2'-val_out12-None-True-]": 0.0007970720180310309,
"bluesky_queueserver/manager/tests/test_conversions.py::test_read_cell_parameter['det1'-det1-str-True-]": 0.000930176000110805,
"bluesky_queueserver/manager/tests/test_conversions.py::test_read_cell_parameter[10, 20-val_out9-None-True-]": 0.0009065670019481331,
"bluesky_queueserver/manager/tests/test_conversions.py::test_read_cell_parameter[10-10-int-True-0]": 0.0019587980350479484,
"bluesky_queueserver/manager/tests/test_conversions.py::test_read_cell_parameter[10-10-int-True-1]": 0.0010803029872477055,
"bluesky_queueserver/manager/tests/test_conversions.py::test_read_cell_parameter[10.0-10-float-True-]": 0.0010393420234322548,
"bluesky_queueserver/manager/tests/test_conversions.py::test_read_cell_parameter[10.0-10-int-True-0]": 0.00154183799168095,
"bluesky_queueserver/manager/tests/test_conversions.py::test_read_cell_parameter[10.0-10-int-True-1]": 0.0013345690094865859,
"bluesky_queueserver/manager/tests/test_conversions.py::test_read_cell_parameter[10.3, 20-val_out10-None-True-]": 0.0009015830000862479,
"bluesky_queueserver/manager/tests/test_conversions.py::test_read_cell_parameter[10.5-10.5-float-True-0]": 0.001455869001802057,
"bluesky_queueserver/manager/tests/test_conversions.py::test_read_cell_parameter[10.5-10.5-float-True-1]": 0.0011380919895600528,
"bluesky_queueserver/manager/tests/test_conversions.py::test_read_cell_parameter[10.5-10.5-float-True-2]": 0.0014339569897856563,
"bluesky_queueserver/manager/tests/test_conversions.py::test_read_cell_parameter[[10, 20, 'det']-val_out16-list-True-]": 0.0007957599882502109,
"bluesky_queueserver/manager/tests/test_conversions.py::test_read_cell_parameter[det1, det2-val_out14-None-False-name 'det1' is not defined]": 0.0008308439864777029,
"bluesky_queueserver/manager/tests/test_conversions.py::test_read_cell_parameter[det1-det1-None-False-name 'det1' is not defined]": 0.0009107670048251748,
"bluesky_queueserver/manager/tests/test_conversions.py::test_read_cell_parameter[val_in1-10-int-True-]": 0.002133176982169971,
"bluesky_queueserver/manager/tests/test_conversions.py::test_read_cell_parameter[val_in15-None-None-False-Cell value .* has unsupported type]": 0.0009192829893436283,
"bluesky_queueserver/manager/tests/test_conversions.py::test_read_cell_parameter[{'a':'10','b':'20.5','c':'det','d':{'e':[50, 60]}}-val_out17-dict-True-]": 0.0008641600143164396,
"bluesky_queueserver/manager/tests/test_conversions.py::test_simplify_plan_descriptions_1[plans_in0-plans_out_expected0]": 0.0020987549796700478,
"bluesky_queueserver/manager/tests/test_conversions.py::test_simplify_plan_descriptions_1[plans_in1-plans_out_expected1]": 0.0030517869745381176,
"bluesky_queueserver/manager/tests/test_conversions.py::test_simplify_plan_descriptions_1[plans_in2-plans_out_expected2]": 0.0021731999586336315,
"bluesky_queueserver/manager/tests/test_conversions.py::test_simplify_plan_descriptions_1[plans_in3-plans_out_expected3]": 0.001997251994907856,
"bluesky_queueserver/manager/tests/test_conversions.py::test_spreadsheet_to_plan_list_1[.csv]": 0.009146172989858314,
"bluesky_queueserver/manager/tests/test_conversions.py::test_spreadsheet_to_plan_list_1[.xlsx]": 0.148631995980395,
"bluesky_queueserver/manager/tests/test_conversions.py::test_spreadsheet_to_plan_list_2_fail[extra_plan0-Plan name .*row 9.* has incorrect type-.csv]": 0.00876152204000391,
"bluesky_queueserver/manager/tests/test_conversions.py::test_spreadsheet_to_plan_list_2_fail[extra_plan0-Plan name .*row 9.* has incorrect type-.xlsx]": 0.02054258799762465,
"bluesky_queueserver/manager/tests/test_conversions.py::test_spreadsheet_to_plan_list_2_fail[extra_plan1-Plan name .*row 9.* has incorrect type-.csv]": 0.0073528609646018595,
"bluesky_queueserver/manager/tests/test_conversions.py::test_spreadsheet_to_plan_list_2_fail[extra_plan1-Plan name .*row 9.* has incorrect type-.xlsx]": 0.01811636396450922,
"bluesky_queueserver/manager/tests/test_conversions.py::test_spreadsheet_to_plan_list_2_fail[extra_plan2-Plan name .*10.*row 9.* is not a valid plan name-.csv]": 0.0085563879692927,
"bluesky_queueserver/manager/tests/test_conversions.py::test_spreadsheet_to_plan_list_2_fail[extra_plan2-Plan name .*10.*row 9.* is not a valid plan name-.xlsx]": 0.020134378981310874,
"bluesky_queueserver/manager/tests/test_conversions.py::test_spreadsheet_to_plan_list_2_fail[extra_plan3-Plan name .*co unt.*row 9.* is not a valid plan name-.csv]": 0.006877814012113959,
"bluesky_queueserver/manager/tests/test_conversions.py::test_spreadsheet_to_plan_list_2_fail[extra_plan3-Plan name .*co unt.*row 9.* is not a valid plan name-.xlsx]": 0.01843679099692963,
"bluesky_queueserver/manager/tests/test_fixtures.py::test_fixture_re_manager_cmd_1": 1.9968571169883944,
"bluesky_queueserver/manager/tests/test_fixtures.py::test_fixture_re_manager_cmd_2": 5.893113110010745,
"bluesky_queueserver/manager/tests/test_gen_lists.py::test_gen_list_of_plans_and_devices_01": 6.275994260999141,
"bluesky_queueserver/manager/tests/test_gen_lists.py::test_gen_list_of_plans_and_devices_02": 6.2095707549888175,
"bluesky_queueserver/manager/tests/test_gen_lists.py::test_gen_list_of_plans_and_devices_03[0-det_structure1]": 2.2457458990393206,
"bluesky_queueserver/manager/tests/test_gen_lists.py::test_gen_list_of_plans_and_devices_03[1-det_structure2]": 2.087215887993807,
"bluesky_queueserver/manager/tests/test_gen_lists.py::test_gen_list_of_plans_and_devices_03[2-det_structure3]": 2.1725861539889593,
"bluesky_queueserver/manager/tests/test_gen_lists.py::test_gen_list_of_plans_and_devices_03[None-det_structure0]": 2.4804649759898894,
"bluesky_queueserver/manager/tests/test_gen_lists.py::test_gen_list_of_plans_and_devices_04[False]": 2.1062831879826263,
"bluesky_queueserver/manager/tests/test_gen_lists.py::test_gen_list_of_plans_and_devices_04[None]": 2.0988212839583866,
"bluesky_queueserver/manager/tests/test_gen_lists.py::test_gen_list_of_plans_and_devices_04[True]": 2.222629272029735,
"bluesky_queueserver/manager/tests/test_gen_lists.py::test_gen_list_of_plans_and_devices_05[False]": 0.19434119199286215,
"bluesky_queueserver/manager/tests/test_gen_lists.py::test_gen_list_of_plans_and_devices_05[None]": 0.19011253997450694,
"bluesky_queueserver/manager/tests/test_gen_lists.py::test_gen_list_of_plans_and_devices_05[True]": 2.14986878799391,
"bluesky_queueserver/manager/tests/test_gen_lists.py::test_gen_list_of_plans_and_devices_06[True-module]": 1.907745906006312,
"bluesky_queueserver/manager/tests/test_gen_lists.py::test_gen_list_of_plans_and_devices_06[True-profile]": 1.9248803370282985,
"bluesky_queueserver/manager/tests/test_gen_lists.py::test_gen_list_of_plans_and_devices_06[True-script]": 1.8638849499984644,
"bluesky_queueserver/manager/tests/test_gen_lists.py::test_gen_list_of_plans_and_devices_06[True-startup_dir]": 1.8744931850233115,
"bluesky_queueserver/manager/tests/test_gen_lists.py::test_gen_list_of_plans_and_devices_cli_01[file_incorrect_path-1]": 3.4359995939885266,
"bluesky_queueserver/manager/tests/test_gen_lists.py::test_gen_list_of_plans_and_devices_cli_01[startup_collection_at_current_dir-0]": 3.4112151059671305,
"bluesky_queueserver/manager/tests/test_gen_lists.py::test_gen_list_of_plans_and_devices_cli_01[startup_collection_dir-0]": 3.388448776997393,
"bluesky_queueserver/manager/tests/test_gen_lists.py::test_gen_list_of_plans_and_devices_cli_01[startup_collection_incorrect_path_A-1]": 0.6947928680165205,
"bluesky_queueserver/manager/tests/test_gen_lists.py::test_gen_list_of_plans_and_devices_cli_01[startup_collection_incorrect_path_B-1]": 0.6960704489611089,
"bluesky_queueserver/manager/tests/test_gen_lists.py::test_gen_list_of_plans_and_devices_cli_01[startup_module_name-0]": 3.4488961850001942,
"bluesky_queueserver/manager/tests/test_gen_lists.py::test_gen_list_of_plans_and_devices_cli_01[startup_module_name_incorrect-1]": 0.27801930901478045,
"bluesky_queueserver/manager/tests/test_gen_lists.py::test_gen_list_of_plans_and_devices_cli_01[startup_script_path-0]": 3.430137196992291,
"bluesky_queueserver/manager/tests/test_gen_lists.py::test_gen_list_of_plans_and_devices_cli_01[startup_script_path_incorrect-1]": 0.27484594396082684,
"bluesky_queueserver/manager/tests/test_gen_lists.py::test_gen_list_of_plans_and_devices_cli_02[False]": 2.4800996750127524,
"bluesky_queueserver/manager/tests/test_gen_lists.py::test_gen_list_of_plans_and_devices_cli_02[None]": 2.5330619819869753,
"bluesky_queueserver/manager/tests/test_gen_lists.py::test_gen_list_of_plans_and_devices_cli_02[True]": 2.6245696709956974,
"bluesky_queueserver/manager/tests/test_gen_lists.py::test_gen_list_of_plans_and_devices_cli_03[0-det_structure1]": 2.9488808829628397,
"bluesky_queueserver/manager/tests/test_gen_lists.py::test_gen_list_of_plans_and_devices_cli_03[1-det_structure2]": 2.6581971389823593,
"bluesky_queueserver/manager/tests/test_gen_lists.py::test_gen_list_of_plans_and_devices_cli_03[2-det_structure3]": 2.792344359011622,
"bluesky_queueserver/manager/tests/test_gen_lists.py::test_gen_list_of_plans_and_devices_cli_03[None-det_structure0]": 2.767989532003412,
"bluesky_queueserver/manager/tests/test_gen_lists.py::test_gen_list_of_plans_and_devices_cli_04[False]": 0.9268336560053285,
"bluesky_queueserver/manager/tests/test_gen_lists.py::test_gen_list_of_plans_and_devices_cli_04[None]": 0.9594992130005267,
"bluesky_queueserver/manager/tests/test_gen_lists.py::test_gen_list_of_plans_and_devices_cli_04[True]": 2.602459410991287,
"bluesky_queueserver/manager/tests/test_ip_kernel_func.py::test_ip_kernel_direct_connection_01": 9.617982276016846,
"bluesky_queueserver/manager/tests/test_ip_kernel_func.py::test_ip_kernel_direct_connection_02[plan-0]": 10.890738422982395,
"bluesky_queueserver/manager/tests/test_ip_kernel_func.py::test_ip_kernel_direct_connection_02[plan-1]": 10.787555945047643,
"bluesky_queueserver/manager/tests/test_ip_kernel_func.py::test_ip_kernel_direct_connection_02[queue-0]": 16.415374817006523,
"bluesky_queueserver/manager/tests/test_ip_kernel_func.py::test_ip_kernel_direct_connection_02[queue-1]": 15.965161171014188,
"bluesky_queueserver/manager/tests/test_ip_kernel_func.py::test_ip_kernel_direct_connection_03[abort-0]": 13.160259625030449,
"bluesky_queueserver/manager/tests/test_ip_kernel_func.py::test_ip_kernel_direct_connection_03[abort-1]": 13.208380986994598,
"bluesky_queueserver/manager/tests/test_ip_kernel_func.py::test_ip_kernel_direct_connection_03[halt-0]": 12.72747298903414,
"bluesky_queueserver/manager/tests/test_ip_kernel_func.py::test_ip_kernel_direct_connection_03[halt-1]": 12.575081916991621,
"bluesky_queueserver/manager/tests/test_ip_kernel_func.py::test_ip_kernel_direct_connection_03[resume-0]": 15.76080904097762,
"bluesky_queueserver/manager/tests/test_ip_kernel_func.py::test_ip_kernel_direct_connection_03[resume-1]": 15.719978601002367,
"bluesky_queueserver/manager/tests/test_ip_kernel_func.py::test_ip_kernel_direct_connection_03[stop-0]": 12.580952424992574,
"bluesky_queueserver/manager/tests/test_ip_kernel_func.py::test_ip_kernel_direct_connection_03[stop-1]": 13.110971921007149,
"bluesky_queueserver/manager/tests/test_ip_kernel_func.py::test_ip_kernel_direct_connection_04[function-0]": 11.857700108987046,
"bluesky_queueserver/manager/tests/test_ip_kernel_func.py::test_ip_kernel_direct_connection_04[function-1]": 11.746552103024442,
"bluesky_queueserver/manager/tests/test_ip_kernel_func.py::test_ip_kernel_direct_connection_04[script-0]": 11.162855504022446,
"bluesky_queueserver/manager/tests/test_ip_kernel_func.py::test_ip_kernel_direct_connection_04[script-1]": 10.728809951979201,
"bluesky_queueserver/manager/tests/test_ip_kernel_func.py::test_ip_kernel_execute_tasks_01[False-function]": 10.258925215021009,
"bluesky_queueserver/manager/tests/test_ip_kernel_func.py::test_ip_kernel_execute_tasks_01[False-script]": 8.794298552005785,
"bluesky_queueserver/manager/tests/test_ip_kernel_func.py::test_ip_kernel_execute_tasks_01[True-function]": 9.691921512014233,
"bluesky_queueserver/manager/tests/test_ip_kernel_func.py::test_ip_kernel_execute_tasks_01[True-script]": 8.139053688995773,
"bluesky_queueserver/manager/tests/test_ip_kernel_func.py::test_ip_kernel_execute_tasks_02": 14.903351006971207,
"bluesky_queueserver/manager/tests/test_ip_kernel_func.py::test_ip_kernel_interrupt_01": 4.597718991019065,
"bluesky_queueserver/manager/tests/test_ip_kernel_func.py::test_ip_kernel_interrupt_02[func]": 10.544275099993683,
"bluesky_queueserver/manager/tests/test_ip_kernel_func.py::test_ip_kernel_interrupt_02[ip_client]": 10.761331684014294,
"bluesky_queueserver/manager/tests/test_ip_kernel_func.py::test_ip_kernel_interrupt_02[script]": 10.280970660998719,
"bluesky_queueserver/manager/tests/test_ip_kernel_func.py::test_ip_kernel_interrupt_03[plan0-deferred-4-True]": 17.63157989800675,
"bluesky_queueserver/manager/tests/test_ip_kernel_func.py::test_ip_kernel_interrupt_03[plan1-immediate-4-True]": 19.820365526975365,
"bluesky_queueserver/manager/tests/test_ip_kernel_func.py::test_ip_kernel_interrupt_03[plan2-deferred-4-False]": 13.818708002043422,
"bluesky_queueserver/manager/tests/test_ip_kernel_func.py::test_ip_kernel_interrupt_03[plan3-immediate-4-True]": 15.703315315011423,
"bluesky_queueserver/manager/tests/test_ip_kernel_func.py::test_ip_kernel_interrupt_04[func-int_params10-True-]": 8.857172935007839,
"bluesky_queueserver/manager/tests/test_ip_kernel_func.py::test_ip_kernel_interrupt_04[func-int_params11-False-Not allowed to interrupt running task]": 8.78552852102439,
"bluesky_queueserver/manager/tests/test_ip_kernel_func.py::test_ip_kernel_interrupt_04[func-int_params12-False-Not allowed to interrupt running task]": 8.871734376996756,
"bluesky_queueserver/manager/tests/test_ip_kernel_func.py::test_ip_kernel_interrupt_04[func-int_params9-True-]": 8.67990679704235,
"bluesky_queueserver/manager/tests/test_ip_kernel_func.py::test_ip_kernel_interrupt_04[ip_client-int_params0-True-]": 7.936251348990481,
"bluesky_queueserver/manager/tests/test_ip_kernel_func.py::test_ip_kernel_interrupt_04[ip_client-int_params1-True-]": 7.8983423249737825,
"bluesky_queueserver/manager/tests/test_ip_kernel_func.py::test_ip_kernel_interrupt_04[ip_client-int_params2-True-]": 8.58821961702779,
"bluesky_queueserver/manager/tests/test_ip_kernel_func.py::test_ip_kernel_interrupt_04[ip_client-int_params3-True-]": 8.554792046023067,
"bluesky_queueserver/manager/tests/test_ip_kernel_func.py::test_ip_kernel_interrupt_04[ip_client-int_params4-False-API request contains unsupported parameters: 'unknown_param']": 7.944757244986249,
"bluesky_queueserver/manager/tests/test_ip_kernel_func.py::test_ip_kernel_interrupt_04[plan-int_params13-True-]": 9.367302025028039,
"bluesky_queueserver/manager/tests/test_ip_kernel_func.py::test_ip_kernel_interrupt_04[plan-int_params14-True-]": 9.796701595012564,
"bluesky_queueserver/manager/tests/test_ip_kernel_func.py::test_ip_kernel_interrupt_04[plan-int_params15-False-Not allowed to interrupt running plan]": 8.890993637032807,
"bluesky_queueserver/manager/tests/test_ip_kernel_func.py::test_ip_kernel_interrupt_04[plan-int_params16-False-Not allowed to interrupt running plan]": 9.824446422979236,
"bluesky_queueserver/manager/tests/test_ip_kernel_func.py::test_ip_kernel_interrupt_04[script-int_params5-True-]": 8.084062494977843,
"bluesky_queueserver/manager/tests/test_ip_kernel_func.py::test_ip_kernel_interrupt_04[script-int_params6-True-]": 7.515321768994909,
"bluesky_queueserver/manager/tests/test_ip_kernel_func.py::test_ip_kernel_interrupt_04[script-int_params7-False-Not allowed to interrupt running task]": 7.539840551966336,
"bluesky_queueserver/manager/tests/test_ip_kernel_func.py::test_ip_kernel_interrupt_04[script-int_params8-False-Not allowed to interrupt running task]": 7.36821983702248,
"bluesky_queueserver/manager/tests/test_ip_kernel_func.py::test_ip_kernel_loading_script_01": 4.636589492991334,
"bluesky_queueserver/manager/tests/test_ip_kernel_func.py::test_ip_kernel_loading_script_02": 5.63624769001035,
"bluesky_queueserver/manager/tests/test_ip_kernel_func.py::test_ip_kernel_reserve_01[repeated]": 9.793951714003924,
"bluesky_queueserver/manager/tests/test_ip_kernel_func.py::test_ip_kernel_reserve_01[single]": 7.807623597967904,
"bluesky_queueserver/manager/tests/test_ip_kernel_func.py::test_ip_kernel_run_plans_01[plan-abort]": 9.862811667000642,
"bluesky_queueserver/manager/tests/test_ip_kernel_func.py::test_ip_kernel_run_plans_01[plan-halt]": 9.888867776986444,
"bluesky_queueserver/manager/tests/test_ip_kernel_func.py::test_ip_kernel_run_plans_01[plan-resume]": 16.676474829000654,
"bluesky_queueserver/manager/tests/test_ip_kernel_func.py::test_ip_kernel_run_plans_01[plan-stop]": 9.387352207006188,
"bluesky_queueserver/manager/tests/test_ip_kernel_func.py::test_ip_kernel_run_plans_01[queue-abort]": 9.35936781897908,
"bluesky_queueserver/manager/tests/test_ip_kernel_func.py::test_ip_kernel_run_plans_01[queue-halt]": 9.395952220045729,
"bluesky_queueserver/manager/tests/test_ip_kernel_func.py::test_ip_kernel_run_plans_01[queue-resume]": 16.543305382016115,
"bluesky_queueserver/manager/tests/test_ip_kernel_func.py::test_ip_kernel_run_plans_01[queue-stop]": 8.87143697499414,
"bluesky_queueserver/manager/tests/test_ip_kernel_func.py::test_ip_kernel_run_plans_02[plan-abort]": 9.820791860023746,
"bluesky_queueserver/manager/tests/test_ip_kernel_func.py::test_ip_kernel_run_plans_02[plan-halt]": 10.357013863016618,
"bluesky_queueserver/manager/tests/test_ip_kernel_func.py::test_ip_kernel_run_plans_02[plan-resume]": 17.505555194977205,
"bluesky_queueserver/manager/tests/test_ip_kernel_func.py::test_ip_kernel_run_plans_02[plan-stop]": 10.395855213020695,
"bluesky_queueserver/manager/tests/test_ip_kernel_func.py::test_ip_kernel_run_plans_02[queue-abort]": 10.314455901971087,
"bluesky_queueserver/manager/tests/test_ip_kernel_func.py::test_ip_kernel_run_plans_02[queue-halt]": 10.393780682003126,
"bluesky_queueserver/manager/tests/test_ip_kernel_func.py::test_ip_kernel_run_plans_02[queue-resume]": 17.51369072799571,
"bluesky_queueserver/manager/tests/test_ip_kernel_func.py::test_ip_kernel_run_plans_02[queue-stop]": 9.92644641600782,
"bluesky_queueserver/manager/tests/test_ip_kernel_func.py::test_ip_kernel_run_plans_03[plan]": 14.961038242967334,
"bluesky_queueserver/manager/tests/test_ip_kernel_func.py::test_ip_kernel_run_plans_03[queue]": 14.877406292012893,
"bluesky_queueserver/manager/tests/test_ip_kernel_func.py::test_ip_kernel_run_plans_04[plan-abort]": 12.015819102991372,
"bluesky_queueserver/manager/tests/test_ip_kernel_func.py::test_ip_kernel_run_plans_04[plan-halt]": 11.508077305014012,
"bluesky_queueserver/manager/tests/test_ip_kernel_func.py::test_ip_kernel_run_plans_04[plan-resume]": 11.401938630035147,
"bluesky_queueserver/manager/tests/test_ip_kernel_func.py::test_ip_kernel_run_plans_04[plan-stop]": 12.379727398976684,
"bluesky_queueserver/manager/tests/test_ip_kernel_func.py::test_ip_kernel_run_plans_04[queue-abort]": 11.875802173017291,
"bluesky_queueserver/manager/tests/test_ip_kernel_func.py::test_ip_kernel_run_plans_04[queue-halt]": 11.414457673003199,
"bluesky_queueserver/manager/tests/test_ip_kernel_func.py::test_ip_kernel_run_plans_04[queue-resume]": 11.462981946009677,
"bluesky_queueserver/manager/tests/test_ip_kernel_func.py::test_ip_kernel_run_plans_04[queue-stop]": 11.407426929974463,
"bluesky_queueserver/manager/tests/test_logging.py::test_PPrintForLogging_01[10-10]": 0.0016701270069461316,
"bluesky_queueserver/manager/tests/test_logging.py::test_PPrintForLogging_01[If all awaitables are completed successfully, the result is an aggregate list of returned values.-'If all awaitables are completed ...\\\\n... gregate list of returned values.']": 0.0009117100271396339,
"bluesky_queueserver/manager/tests/test_logging.py::test_PPrintForLogging_01[Some string-'Some string']": 0.0011278440069872886,
"bluesky_queueserver/manager/tests/test_logging.py::test_PPrintForLogging_01[The result is an aggregate list of returned values.-'The result is an aggregate list of returned values.']": 0.0008996000105980784,
"bluesky_queueserver/manager/tests/test_logging.py::test_PPrintForLogging_01[msg_in10-[{'a': 1, 'b': 2, 'c': 3, 'd': 4, 'e': 5, 'f': 6, 'g': 7, '...': '...'},\\n 'Some String']]": 0.001033039967296645,
"bluesky_queueserver/manager/tests/test_logging.py::test_PPrintForLogging_01[msg_in11-{'success': True,\\n 'msg': '',\\n 'item': {'name': 'func_receive_data',\\n 'args': [[0.9369286739807017,\\n 0.34376855785565996,\\n 0.42682410595184694,\\n 0.07561990556676668,\\n 0.99047480979217,\\n '...']],\\n 'kwargs': {}}}]": 0.002681316022062674,
"bluesky_queueserver/manager/tests/test_logging.py::test_PPrintForLogging_01[msg_in12-{'plans_existing': {'plan1': '{...}', 'plan2': '{...}'}, 'devices_allowed': []}]": 0.0009639290219638497,
"bluesky_queueserver/manager/tests/test_logging.py::test_PPrintForLogging_01[msg_in15-{'msg': 'If all awaitables are completed ...\\\\n'\\n '... gregate list of returned values.',\\n 'lst': ['If all awaitables are completed ...\\\\n'\\n '... gregate list of returned values.']}]": 0.0008229510276578367,
"bluesky_queueserver/manager/tests/test_logging.py::test_PPrintForLogging_01[msg_in16-{'traceback': 'If all awaitables are completed successfully, the result is an '\\n 'aggregate list of returned values.'}]": 0.0007852630224078894,
"bluesky_queueserver/manager/tests/test_logging.py::test_PPrintForLogging_01[msg_in2-[1, 2, 3, 'ab']]": 0.0011452210019342601,
"bluesky_queueserver/manager/tests/test_logging.py::test_PPrintForLogging_01[msg_in3-{'ab': 10, 'cd': 'Some string'}]": 0.0011416170164011419,
"bluesky_queueserver/manager/tests/test_logging.py::test_PPrintForLogging_01[msg_in4-{'short_list': [1, 2, 3, 4, 5],\\n 'small_dict': {'number': 50,\\n 'str': 'Another string',\\n 'short_dict': {'number': 70,\\n 'short_list': ['ab',\\n 'cd',\\n 'ef',\\n {'gh': 50, 'ef': 'abc'}]}},\\n 'str': 'This is some string',\\n 'number': 10}]": 0.001365967997116968,
"bluesky_queueserver/manager/tests/test_logging.py::test_PPrintForLogging_01[msg_in5-[1, 2, 3, 4, 5, '...']]": 0.0011422019742894918,
"bluesky_queueserver/manager/tests/test_logging.py::test_PPrintForLogging_01[msg_in6-{'a': 1, 'b': 2, 'c': 3, 'd': 4, 'e': 5, 'f': 6, 'g': 7, '...': '...'}]": 0.0012919169967062771,
"bluesky_queueserver/manager/tests/test_logging.py::test_PPrintForLogging_01[msg_in7-{'b': [1, 2, 3, 4, 5, '...'], 'a': 'Some string'}]": 0.001605216006282717,
"bluesky_queueserver/manager/tests/test_logging.py::test_PPrintForLogging_01[msg_in8-[[1, 2, 3, 4, 5, '...'], 'Some string']]": 0.0012619549816008657,
"bluesky_queueserver/manager/tests/test_logging.py::test_PPrintForLogging_01[msg_in9-[[1, 2, 3, 4, 5, '...']]]": 0.001146444003097713,
"bluesky_queueserver/manager/tests/test_manager.py::test_check_request_for_unsupported_params_1[request_dict0-param_names0-True-]": 0.000774429994635284,
"bluesky_queueserver/manager/tests/test_manager.py::test_check_request_for_unsupported_params_1[request_dict1-param_names1-True-]": 0.0007102100062184036,
"bluesky_queueserver/manager/tests/test_manager.py::test_check_request_for_unsupported_params_1[request_dict2-param_names2-False-unsupported parameters: \\\\['ab', 'cd'\\\\]. Supported parameters: \\\\[\\\\]]": 0.0008608880161773413,
"bluesky_queueserver/manager/tests/test_manager.py::test_check_request_for_unsupported_params_1[request_dict3-param_names3-False-unsupported parameters: 'ab'. Supported parameters: \\\\[\\\\]]": 0.0008225909841712564,
"bluesky_queueserver/manager/tests/test_manager.py::test_check_request_for_unsupported_params_1[request_dict4-param_names4-False-unsupported parameters: 'ab'. Supported parameters: \\\\['de'\\\\]]": 0.0007438200118485838,
"bluesky_queueserver/manager/tests/test_manager_options.py::test_manager_acq_with_0MQ_proxy": 7.535128236020682,
"bluesky_queueserver/manager/tests/test_manager_options.py::test_manager_options_startup_profile[multiple]": 10.444870018982328,
"bluesky_queueserver/manager/tests/test_manager_options.py::test_manager_options_startup_profile[profile]": 5.4495129519782495,
"bluesky_queueserver/manager/tests/test_manager_options.py::test_manager_options_startup_profile[startup_dir]": 5.783272113971179,
"bluesky_queueserver/manager/tests/test_manager_options.py::test_manager_redis_addr_parameter[localhost-True]": 1.1300162880215794,
"bluesky_queueserver/manager/tests/test_manager_options.py::test_manager_redis_addr_parameter[localhost:6378-False]": 10.057541307993233,
"bluesky_queueserver/manager/tests/test_manager_options.py::test_manager_redis_addr_parameter[localhost:6379-True]": 1.088070386002073,
"bluesky_queueserver/manager/tests/test_output_streaming.py::test_ConsoleOutputStream_1": 0.004846846015425399,
"bluesky_queueserver/manager/tests/test_output_streaming.py::test_ReceiveConsoleOutputAsync_1[coro-0.5]": 11.02765727796941,
"bluesky_queueserver/manager/tests/test_output_streaming.py::test_ReceiveConsoleOutputAsync_1[coro-1.5]": 14.024961552990135,
"bluesky_queueserver/manager/tests/test_output_streaming.py::test_ReceiveConsoleOutputAsync_1[coro-1]": 11.026081051997608,
"bluesky_queueserver/manager/tests/test_output_streaming.py::test_ReceiveConsoleOutputAsync_1[func-0.5]": 11.033015303022694,
"bluesky_queueserver/manager/tests/test_output_streaming.py::test_ReceiveConsoleOutputAsync_1[func-1.5]": 11.032701543997973,
"bluesky_queueserver/manager/tests/test_output_streaming.py::test_ReceiveConsoleOutputAsync_1[func-1]": 11.031655174971092,
"bluesky_queueserver/manager/tests/test_output_streaming.py::test_ReceiveConsoleOutputAsync_2": 2.110824801988201,
"bluesky_queueserver/manager/tests/test_output_streaming.py::test_ReceiveConsoleOutput_1[False-False-False-False-0-None-0]": 1.0094463469577022,
"bluesky_queueserver/manager/tests/test_output_streaming.py::test_ReceiveConsoleOutput_1[False-True-False-False-0-None-0]": 1.014425367990043,
"bluesky_queueserver/manager/tests/test_output_streaming.py::test_ReceiveConsoleOutput_1[True-False-False-False-0-None-0]": 1.0096803169872146,
"bluesky_queueserver/manager/tests/test_output_streaming.py::test_ReceiveConsoleOutput_1[True-True-False-False-0-None-0]": 1.011244418012211,
"bluesky_queueserver/manager/tests/test_output_streaming.py::test_ReceiveConsoleOutput_1[True-True-False-False-0.5-None-0]": 2.0220338799990714,
"bluesky_queueserver/manager/tests/test_output_streaming.py::test_ReceiveConsoleOutput_1[True-True-False-False-0.55-500-3]": 2.121918277000077,
"bluesky_queueserver/manager/tests/test_output_streaming.py::test_ReceiveConsoleOutput_1[True-True-False-False-1.2-500-6]": 3.930911859992193,
"bluesky_queueserver/manager/tests/test_output_streaming.py::test_ReceiveConsoleOutput_1[True-True-False-False-1.2-None-3]": 4.421335557010025,
"bluesky_queueserver/manager/tests/test_output_streaming.py::test_ReceiveConsoleOutput_1[True-True-True-False-0-None-0]": 1.3197232949896716,
"bluesky_queueserver/manager/tests/test_output_streaming.py::test_ReceiveConsoleOutput_1[True-True-True-True-0-None-0]": 1.3205992990115192,
"bluesky_queueserver/manager/tests/test_output_streaming.py::test_setup_console_output_redirection_1": 0.003789587033679709,
"bluesky_queueserver/manager/tests/test_plan_monitoring.py::test_CallbackRegisterRun_1[101]": 0.0032655370014254004,
"bluesky_queueserver/manager/tests/test_plan_monitoring.py::test_CallbackRegisterRun_1[None]": 0.003187393012922257,
"bluesky_queueserver/manager/tests/test_plan_monitoring.py::test_CallbackRegisterRun_1[scan_id2]": 0.002628924004966393,
"bluesky_queueserver/manager/tests/test_plan_monitoring.py::test_RunList_1": 0.003944447002140805,
"bluesky_queueserver/manager/tests/test_plan_monitoring.py::test_RunList_2": 0.0028918729803990573,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_add_batch_to_queue_1[batch_params0---]": 0.0058878459967672825,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_add_batch_to_queue_1[batch_params1--567-567]": 0.006944099004613236,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_add_batch_to_queue_1[batch_params10-1234-567-1234567]": 0.008232167980168015,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_add_batch_to_queue_1[batch_params11-1234-567-1234567]": 0.007458771986421198,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_add_batch_to_queue_1[batch_params12-1234-567-1234567]": 0.006172221008455381,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_add_batch_to_queue_1[batch_params13-1234-567-1235674]": 0.005878252995898947,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_add_batch_to_queue_1[batch_params14-1234-567-1256734]": 0.008447755011729896,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_add_batch_to_queue_1[batch_params15-1234-567-1567234]": 0.009087570011615753,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_add_batch_to_queue_1[batch_params16-1234-567-5671234]": 0.008505686040734872,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_add_batch_to_queue_1[batch_params17-1234-567-5671234]": 0.0058928980433847755,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_add_batch_to_queue_1[batch_params18-1234-567-5671234]": 0.0060796840116381645,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_add_batch_to_queue_1[batch_params19-1234-567-1567234]": 0.008513478009263054,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_add_batch_to_queue_1[batch_params2--567-567]": 0.007922730990685523,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_add_batch_to_queue_1[batch_params20-1234-567-1256734]": 0.006945193978026509,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_add_batch_to_queue_1[batch_params21-1234-567-1567234]": 0.006876186962472275,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_add_batch_to_queue_1[batch_params22-1234-567-1256734]": 0.006754608009941876,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_add_batch_to_queue_1[batch_params23-1234-567-1234567]": 0.007582132006064057,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_add_batch_to_queue_1[batch_params3--567-567]": 0.0059175940114073455,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_add_batch_to_queue_1[batch_params4-1234-567-1234567]": 0.006102474988438189,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_add_batch_to_queue_1[batch_params5-1234-567-5671234]": 0.006194674002472311,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_add_batch_to_queue_1[batch_params6-1234-567-1234567]": 0.007213000033516437,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_add_batch_to_queue_1[batch_params7-1234-567-5671234]": 0.007409324025502428,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_add_batch_to_queue_1[batch_params8-1234-567-1567234]": 0.006059940002160147,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_add_batch_to_queue_1[batch_params9-1234-567-1256734]": 0.006820138049079105,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_add_batch_to_queue_2[False]": 0.006016380008077249,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_add_batch_to_queue_2[None]": 0.004709460976300761,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_add_batch_to_queue_2[True]": 0.004659844998968765,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_add_batch_to_queue_3_fail[params0-abcd-eaf-err_msgs0]": 0.007752097037155181,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_add_batch_to_queue_3_fail[params1-abcd-ead-err_msgs1]": 0.007816589990397915,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_add_batch_to_queue_3_fail[params2-abcd-efg-err_msgs2]": 0.006066248985007405,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_add_batch_to_queue_3_fail[params3-abcd-efg-err_msgs3]": 0.005065946985268965,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_add_batch_to_queue_3_fail[params4-abcd-efg-err_msgs4]": 0.004837544052861631,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_add_batch_to_queue_3_fail[params5-abcd-efg-err_msgs5]": 0.00489453598856926,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_add_item_to_queue_1": 0.00941051502013579,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_add_item_to_queue_2": 0.00796852499479428,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_add_item_to_queue_3[False]": 0.005076175992144272,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_add_item_to_queue_3[True]": 0.004158064955845475,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_add_item_to_queue_4_fail": 0.004445063997991383,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_add_to_history_functions": 0.004986204992746934,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_autostart_mode_info_1": 0.0047576930082868785,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_clean_item_properties_1[item_in0-item_out0]": 0.00433498399797827,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_clean_item_properties_1[item_in1-item_out1]": 0.003860265016555786,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_clean_item_properties_1[item_in2-item_out2]": 0.003928907011868432,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_clean_item_properties_1[item_in3-item_out3]": 0.005655910994391888,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_clear_queue": 0.004961489990819246,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_filter_item_parameters[item_in0-item_out0]": 0.011016588017810136,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_filter_item_parameters[item_in1-item_out1]": 0.006825262971688062,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_filter_item_parameters[item_in2-item_out2]": 0.005454430996906012,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_filter_item_parameters[item_in3-item_out3]": 0.004404665989568457,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_filter_item_parameters[item_in4-item_out4]": 0.004285411996534094,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_get_index_by_uid_1": 0.004797918983967975,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_get_index_by_uid_batch_1[sequence0-indices_expected0]": 0.005685518990503624,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_get_index_by_uid_batch_1[sequence1-indices_expected1]": 0.004865811963099986,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_get_index_by_uid_batch_1[sequence2-indices_expected2]": 0.004670579975936562,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_get_index_by_uid_batch_1[sequence3-indices_expected3]": 0.004825109004741535,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_get_item_1[params0-a]": 0.006227852019947022,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_get_item_1[params1-c]": 0.006606025999644771,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_get_item_1[params10-a]": 0.0044708010100293905,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_get_item_1[params11-b]": 0.005488852970302105,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_get_item_1[params12-None]": 0.007033632980892435,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_get_item_1[params2-a]": 0.00621724798111245,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_get_item_1[params3-b]": 0.0060252739931456745,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_get_item_1[params4-c]": 0.00644501400529407,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_get_item_1[params5-None]": 0.0065406529465690255,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_get_item_1[params6-c]": 0.006585005001397803,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_get_item_1[params7-b]": 0.005394960957346484,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_get_item_1[params8-a]": 0.004722973011666909,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_get_item_1[params9-None]": 0.005053429980762303,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_get_item_2_fail": 0.0073673679726198316,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_get_queue_full_1": 0.006617649021791294,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_lock_info_1": 0.007391257968265563,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_move_batch_1[batch_params0-0123456-23-23-2301456-True-]": 0.008701227023266256,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_move_batch_1[batch_params1-0123456-23-23-2301456-True-]": 0.007693543011555448,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_move_batch_1[batch_params10-0123456-23-23-0145236-True-]": 0.009315780975157395,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_move_batch_1[batch_params11-0123456-23-23-0145236-True-]": 0.00892239497625269,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_move_batch_1[batch_params12-0123456-23-23-0145623-True-]": 0.007704870979068801,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_move_batch_1[batch_params13-0123456-23-23-0145623-True-]": 0.0075062579999212176,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_move_batch_1[batch_params14-0123456-023-023-1450236-True-]": 0.008919341984437779,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_move_batch_1[batch_params15-0123456-203-203-1452036-True-]": 0.010437389020808041,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_move_batch_1[batch_params16-0123456-302-302-1453026-True-]": 0.010235362977255136,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_move_batch_1[batch_params17-0123456-302-302-1453026-True-]": 0.008654067991301417,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_move_batch_1[batch_params18-0123456-023-023-1450236-True-]": 0.010211420012637973,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_move_batch_1[batch_params19-0123456-203-023-1450236-True-]": 0.009753297985298559,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_move_batch_1[batch_params2-0123456-23-23-0145623-True-]": 0.007349610008532181,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_move_batch_1[batch_params20-0123456-302-023-1450236-True-]": 0.008666531968628988,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_move_batch_1[batch_params21-0123456---0123456-True-]": 0.006422932987334207,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_move_batch_1[batch_params22-----True-]": 0.004700336023233831,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_move_batch_1[batch_params23-0123456-01-01-0123456-True-]": 0.007247028988786042,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_move_batch_1[batch_params24-0123456-56-56-0123456-True-]": 0.007636886992258951,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_move_batch_1[batch_params25-0123456-10-10-1023456-True-]": 0.008889702992746606,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_move_batch_1[batch_params26-0123456-65-65-0123465-True-]": 0.007465196016710252,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_move_batch_1[batch_params27-0123456-23-23-0123456-False-Destination for the batch is not specified]": 0.00756501397700049,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_move_batch_1[batch_params28-0123456-23-23-0123456-False-more than one mutually exclusive parameter]": 0.007277990021975711,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_move_batch_1[batch_params29-0123456-023-023-0123456-False-item with UID '33' is in the batch]": 0.007526360044721514,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_move_batch_1[batch_params3-0123456-23-23-0145623-True-]": 0.0071324449963867664,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_move_batch_1[batch_params30-0123456-023-023-0123456-False-item with UID '33' is in the batch]": 0.006266459968173876,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_move_batch_1[batch_params31-0123456-093-093-0123456-False-The\\\\ queue\\\\ does\\\\ not\\\\ contain\\\\ items\\\\ with\\\\ the\\\\ following\\\\ UIDs:\\\\ \\\\['99'\\\\]]": 0.0063818200142122805,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_move_batch_1[batch_params32-0123456-07893-07893-0123456-False-The\\\\ queue\\\\ does\\\\ not\\\\ contain\\\\ items\\\\ with\\\\ the\\\\ following\\\\ UIDs:\\\\ \\\\['77',\\\\ '88',\\\\ '99'\\\\]]": 0.005818251025630161,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_move_batch_1[batch_params33-0123456-0223-0223-0123456-False-The\\\\ list\\\\ of\\\\ contains\\\\ repeated\\\\ UIDs\\\\ \\\\(1\\\\ UIDs\\\\)]": 0.005825130006996915,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_move_batch_1[batch_params4-0123456-23-23-0142356-True-]": 0.007991549005964771,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_move_batch_1[batch_params5-0123456-23-23-0145236-True-]": 0.010392444004537538,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_move_batch_1[batch_params6-0123456-23-23-2301456-True-]": 0.009415376000106335,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_move_batch_1[batch_params7-0123456-23-23-2301456-True-]": 0.008442212012596428,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_move_batch_1[batch_params8-0123456-23-23-0231456-True-]": 0.008760438999161124,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_move_batch_1[batch_params9-0123456-23-23-0231456-True-]": 0.007541670027421787,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_move_item_1[params0-1-abcde-True-False-]": 0.005825168947922066,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_move_item_1[params1-0-abcde-True-False-]": 0.005815238982904702,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_move_item_1[params10-2-abdec-True-True-]": 0.005822301987791434,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_move_item_1[params11-4-eabcd-True-True-]": 0.007241983985295519,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_move_item_1[params12-4-aebcd-True-True-]": 0.006492124026408419,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_move_item_1[params13-3-dabce-True-True-]": 0.0067025259777437896,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_move_item_1[params14-3-adbce-True-True-]": 0.005888958985451609,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_move_item_1[params15-4-eabcd-True-True-]": 0.0066261220490559936,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_move_item_1[params16-4-aebcd-True-True-]": 0.009898480959236622,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_move_item_1[params17-3-dabce-True-True-]": 0.006709581968607381,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_move_item_1[params18-3-adbce-True-True-]": 0.00620273599633947,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_move_item_1[params19-3-abdce-True-True-]": 0.006062066007871181,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_move_item_1[params2-4-abcde-True-False-]": 0.007941207994008437,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_move_item_1[params20-1-acdbe-True-True-]": 0.00746979596442543,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_move_item_1[params21-2-abdce-True-True-]": 0.006577389984158799,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_move_item_1[params22-3-abcde-True-False-]": 0.006965341977775097,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_move_item_1[params23-2-abcde-True-False-]": 0.006123941973783076,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_move_item_1[params24-0-abcde-True-True-]": 0.008743807033170015,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_move_item_1[params25-0-bacde-True-True-]": 0.00724587999866344,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_move_item_1[params26-1-bacde-True-True-]": 0.007736403989838436,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_move_item_1[params27-1-acdeb-True-True-]": 0.00685491698095575,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_move_item_1[params28-0-abcde-True-False-]": 0.008304227027110755,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_move_item_1[params29-4-abcde-True-False-]": 0.007707470969762653,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_move_item_1[params3-0-bcdea-True-True-]": 0.007417468004859984,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_move_item_1[params30-1-acdbe-True-True-]": 0.006951279967324808,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_move_item_1[params31-0-bcdae-True-True-]": 0.006149760010885075,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_move_item_1[params32-3-adbce-True-True-]": 0.006859485001768917,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_move_item_1[params33-4-aebcd-True-True-]": 0.006327183014946058,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_move_item_1[params34-1-acbde-True-True-]": 0.006105365988332778,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_move_item_1[params35-0-bcade-True-True-]": 0.006113409966928884,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_move_item_1[params36-3-dabce-True-True-]": 0.005854266026290134,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_move_item_1[params37-4-eabcd-True-True-]": 0.006754398986231536,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_move_item_1[params38-4-abcde-True-False-]": 0.005844433995662257,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_move_item_1[params39-0-abcde-True-False-]": 0.005815793003421277,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_move_item_1[params4-4-eabcd-True-True-]": 0.007267353008501232,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_move_item_1[params40-0--False-False-Source plan \\\\(position 50\\\\) was not found]": 0.005665574019076303,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_move_item_1[params41-0--False-False-Source plan \\\\(UID 'abc'\\\\) was not found]": 0.005798417987534776,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_move_item_1[params42-0--False-False-Destination plan \\\\(position 50\\\\) was not found]": 0.009360005962662399,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_move_item_1[params43-0--False-False-Destination plan \\\\(UID 'abc'\\\\) was not found]": 0.0071713150246068835,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_move_item_1[params44-0--False-None-Source position or UID is not specified]": 0.005626601952826604,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_move_item_1[params45-0--False-False-Destination position or UID is not specified]": 0.005675353022525087,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_move_item_1[params46-1--False-False-Ambiguous parameters]": 0.007830104004824534,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_move_item_1[params47-1--False-False-Ambiguous parameters]": 0.011335852992488071,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_move_item_1[params48-1--False-False-Ambiguous parameters]": 0.006586773000890389,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_move_item_1[params5-1-acbde-True-True-]": 0.006127158005256206,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_move_item_1[params6-2-acbde-True-True-]": 0.007328373962081969,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_move_item_1[params7-0-bcdea-True-True-]": 0.007074641005601734,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_move_item_1[params8-4-eabcd-True-True-]": 0.006550335034262389,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_move_item_1[params9-3-dabce-True-True-]": 0.006164910999359563,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_move_item_2": 0.005771330965217203,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_new_item_uid": 0.0004628710448741913,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_pop_item_from_queue_1[-1-c]": 0.005432072997791693,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_pop_item_from_queue_1[-2-b]": 0.005227181012742221,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_pop_item_from_queue_1[-3-a]": 0.006159214011859149,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_pop_item_from_queue_1[-4-None]": 0.0053557640057988465,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_pop_item_from_queue_1[0-a]": 0.005675758031429723,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_pop_item_from_queue_1[1-b]": 0.004863518988713622,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_pop_item_from_queue_1[2-c]": 0.005258302000584081,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_pop_item_from_queue_1[3-None]": 0.005813644005684182,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_pop_item_from_queue_1[back-c]": 0.0056863859645091,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_pop_item_from_queue_1[front-a]": 0.0072006719710770994,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_pop_item_from_queue_2[-1]": 0.004995792987756431,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_pop_item_from_queue_2[0]": 0.00522906199330464,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_pop_item_from_queue_2[1]": 0.0049964580102823675,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_pop_item_from_queue_2[back]": 0.005239240970695391,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_pop_item_from_queue_2[front]": 0.006129357992904261,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_pop_item_from_queue_3": 0.008840163005515933,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_pop_item_from_queue_4_fail": 0.0051839159859810024,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_pop_items_from_queue_batch_1[batch_params0-0123456---0123456-True-]": 0.007785089983372018,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_pop_items_from_queue_batch_1[batch_params1-0123456-23-23-01456-True-]": 0.008618271007435396,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_pop_items_from_queue_batch_1[batch_params10-0123456-283--0123456-False-The queue does not contain items with the following UIDs]": 0.006799530005082488,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_pop_items_from_queue_batch_1[batch_params11-0123456-2883--0123456-False-The list of contains repeated UIDs]": 0.005905170983169228,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_pop_items_from_queue_batch_1[batch_params12-0123456---0123456-True-]": 0.00603944601607509,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_pop_items_from_queue_batch_1[batch_params13-----True-]": 0.004231521976180375,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_pop_items_from_queue_batch_1[batch_params14--23---True-]": 0.00525511201703921,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_pop_items_from_queue_batch_1[batch_params15-----True-]": 0.004968632012605667,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_pop_items_from_queue_batch_1[batch_params16--23---False-The queue does not contain items with the following UIDs]": 0.004311233962653205,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_pop_items_from_queue_batch_1[batch_params2-0123456-32-32-01456-True-]": 0.009704885975224897,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_pop_items_from_queue_batch_1[batch_params3-0123456-06-06-12345-True-]": 0.008224829973187298,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_pop_items_from_queue_batch_1[batch_params4-0123456-283-23-01456-True-]": 0.008895326987840235,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_pop_items_from_queue_batch_1[batch_params5-0123456-2893-23-01456-True-]": 0.01052596201770939,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_pop_items_from_queue_batch_1[batch_params6-0123456-2443-243-0156-True-]": 0.008283139992272481,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_pop_items_from_queue_batch_1[batch_params7-0123456-2443-243-0156-True-]": 0.0075265420018695295,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_pop_items_from_queue_batch_1[batch_params8-0123456-283-23-01456-True-]": 0.007055460999254137,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_pop_items_from_queue_batch_1[batch_params9-0123456-2443--0123456-False-The list of contains repeated UIDs]": 0.00675561698153615,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_process_next_item_1[False-process_next_item-False]": 0.00975829001981765,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_process_next_item_1[False-process_next_item-True]": 0.007464489026460797,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_process_next_item_1[False-set_next_item_as_running-False]": 0.006077718018786982,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_process_next_item_1[False-set_next_item_as_running-True]": 0.006345642963424325,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_process_next_item_1[True-process_next_item-False]": 0.00628841100842692,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_process_next_item_1[True-process_next_item-True]": 0.007649408042198047,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_process_next_item_1[True-set_next_item_as_running-False]": 0.007021044002613053,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_process_next_item_1[True-set_next_item_as_running-True]": 0.006093082018196583,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_process_next_item_2[False-False]": 0.005916077992878854,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_process_next_item_2[False-True]": 0.005891672015422955,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_process_next_item_2[True-False]": 0.00696932093705982,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_process_next_item_2[True-True]": 0.006355218996759504,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_process_next_item_3[instruction-False]": 0.004735363996587694,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_process_next_item_3[instruction-True]": 0.007322927005589008,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_process_next_item_3[plan-False]": 0.0047884800005704165,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_process_next_item_3[plan-True]": 0.00479396601440385,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_process_next_item_4_fail[False]": 0.006635083991568536,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_process_next_item_4_fail[True]": 0.004919167986372486,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_queue_clean[plan_running0-plans0-result_running0-result_plans0]": 0.0056459079787600785,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_queue_clean[plan_running1-plans1-result_running1-result_plans1]": 0.007460452994564548,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_queue_clean[plan_running2-plans2-result_running2-result_plans2]": 0.004914018034469336,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_remove_item": 0.005903554963879287,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_replace_item_1[False]": 0.008562066010199487,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_replace_item_1[True]": 0.008269256999483332,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_replace_item_2": 0.00535150000359863,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_replace_item_3[change_plan]": 0.005969505989924073,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_replace_item_3[change_uid]": 0.005406745010986924,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_replace_item_3[exact_copy]": 0.004903986991848797,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_replace_item_4_failing": 0.007181780965765938,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_running_plan_info": 0.005331681983079761,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_set_new_item_uuid[plan0]": 0.005732807010645047,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_set_new_item_uuid[plan1]": 0.005197295016841963,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_set_plan_queue_mode_1": 0.0071911890408955514,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_set_processed_item_as_completed_1": 0.008536161010852084,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_set_processed_item_as_completed_2": 0.007057117007207125,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_set_processed_item_as_stopped_1": 0.007471183023881167,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_set_processed_item_as_stopped_2[False-False-aborted]": 0.0070733030152041465,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_set_processed_item_as_stopped_2[False-False-completed]": 0.007934538007248193,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_set_processed_item_as_stopped_2[False-False-failed]": 0.006458162039052695,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_set_processed_item_as_stopped_2[False-False-halted]": 0.008072945987805724,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_set_processed_item_as_stopped_2[False-False-stopped]": 0.005804323998745531,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_set_processed_item_as_stopped_2[False-False-unknown]": 0.006951335963094607,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_set_processed_item_as_stopped_2[False-True-aborted]": 0.008458241005428135,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_set_processed_item_as_stopped_2[False-True-completed]": 0.006715180963510647,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_set_processed_item_as_stopped_2[False-True-failed]": 0.009248490037862211,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_set_processed_item_as_stopped_2[False-True-halted]": 0.008493493020068854,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_set_processed_item_as_stopped_2[False-True-stopped]": 0.008975886012194678,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_set_processed_item_as_stopped_2[False-True-unknown]": 0.007222171989269555,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_set_processed_item_as_stopped_2[True-False-aborted]": 0.009210482996422797,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_set_processed_item_as_stopped_2[True-False-completed]": 0.008526293997419998,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_set_processed_item_as_stopped_2[True-False-failed]": 0.007462867011781782,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_set_processed_item_as_stopped_2[True-False-halted]": 0.006397933000698686,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_set_processed_item_as_stopped_2[True-False-stopped]": 0.007789144990965724,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_set_processed_item_as_stopped_2[True-False-unknown]": 0.006691977003356442,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_set_processed_item_as_stopped_2[True-True-aborted]": 0.005814857984660193,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_set_processed_item_as_stopped_2[True-True-completed]": 0.007176223967690021,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_set_processed_item_as_stopped_2[True-True-failed]": 0.00891990796662867,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_set_processed_item_as_stopped_2[True-True-halted]": 0.006106690998421982,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_set_processed_item_as_stopped_2[True-True-stopped]": 0.006623885972658172,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_set_processed_item_as_stopped_2[True-True-unknown]": 0.0075954089988954365,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_set_processed_item_as_stopped_3[completed-False]": 0.0075324870413169265,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_set_processed_item_as_stopped_3[completed-True]": 0.008066297974437475,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_set_processed_item_as_stopped_3[stopped-False]": 0.006839476001914591,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_set_processed_item_as_stopped_3[stopped-True]": 0.0071811760135460645,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_stop_pending_info_1": 0.005409297009464353,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_uid_dict_1": 0.003985020972322673,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_uid_dict_2": 0.0037330029881559312,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_uid_dict_3_initialize": 0.005908342020120472,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_uid_dict_4_failing": 0.004532719001872465,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_user_group_permissions_1": 0.00584083198918961,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_verify_item[plan0-f_kwargs0-False-Item does not have UID]": 0.004962299019098282,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_verify_item[plan1-f_kwargs1-False-Parameter 'item' should be a dictionary]": 0.005106758035253733,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_verify_item[plan2-f_kwargs2-True-]": 0.005890706030186266,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_verify_item[plan3-f_kwargs3-False-Item with UID .+ is already in the queue]": 0.005787588015664369,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_verify_item[plan4-f_kwargs4-False-Item with UID .+ is already in the queue]": 0.005555415991693735,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_verify_item[plan5-f_kwargs5-False-Item with UID .+ is already in the queue]": 0.004898069018963724,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_verify_item[plan6-f_kwargs6-True-]": 0.00512350196368061,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_verify_item[plan7-f_kwargs7-True-]": 0.006166920968098566,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_verify_item[plan8-f_kwargs8-False-Item with UID .+ is already in the queue]": 0.006472687964560464,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_verify_item_type[50-False]": 0.004030468029668555,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_verify_item_type[abc-False]": 0.0037219710065983236,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_verify_item_type[plan0-True]": 0.004355138022219762,
"bluesky_queueserver/manager/tests/test_plan_queue_ops.py::test_verify_item_type[plan1-False]": 0.004202359996270388,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_bind_plan_arguments_1[_f1-plan_args0-plan_kwargs0-plan_bound_params0-True-Exception-]": 0.0010074879683088511,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_bind_plan_arguments_1[_f1-plan_args1-plan_kwargs1-plan_bound_params1-True-Exception-]": 0.0011691950203385204,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_bind_plan_arguments_1[_f1-plan_args2-plan_kwargs2-plan_bound_params2-True-Exception-]": 0.001061094953911379,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_bind_plan_arguments_1[_f1-plan_args3-plan_kwargs3-plan_bound_params3-True-Exception-]": 0.001452474039979279,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_bind_plan_arguments_1[_f1-plan_args4-plan_kwargs4-plan_bound_params4-True-Exception-]": 0.001249866996658966,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_bind_plan_arguments_1[_f1-plan_args5-plan_kwargs5-plan_bound_params5-False-TypeError-missing a required argument]": 0.0012291180028114468,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_bind_plan_arguments_1[_f1-plan_args6-plan_kwargs6-plan_bound_params6-False-TypeError-unexpected keyword argument]": 0.0011155859683640301,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_bind_plan_arguments_1[_f1-plan_args7-plan_kwargs7-plan_bound_params7-False-TypeError-too many positional arguments]": 0.0011806760157924145,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_bind_plan_arguments_1[_f1-plan_args8-plan_kwargs8-plan_bound_params8-False-TypeError-multiple values for argument]": 0.0025818200374487787,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_bind_plan_arguments_1[_f2-plan_args10-plan_kwargs10-plan_bound_params10-True-Exception-]": 0.0009697549976408482,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_bind_plan_arguments_1[_f2-plan_args11-plan_kwargs11-plan_bound_params11-True-Exception-]": 0.0009709730220492929,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_bind_plan_arguments_1[_f2-plan_args9-plan_kwargs9-plan_bound_params9-True-Exception-]": 0.0010058910120278597,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_bind_plan_arguments_1[_f3-plan_args12-plan_kwargs12-plan_bound_params12-True-Exception-]": 0.0010189329914283007,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_bind_plan_arguments_1[_f3-plan_args13-plan_kwargs13-plan_bound_params13-True-Exception-]": 0.0010152019676752388,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_bind_plan_arguments_1[_f4-plan_args14-plan_kwargs14-plan_bound_params14-True-Exception-]": 0.0010960800282191485,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_bind_plan_arguments_1[_f4-plan_args15-plan_kwargs15-plan_bound_params15-True-Exception-]": 0.0010390339884907007,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_bind_plan_arguments_1[_f4-plan_args16-plan_kwargs16-plan_bound_params16-True-Exception-]": 0.0010328989592380822,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_bind_plan_arguments_1[_f4-plan_args17-plan_kwargs17-plan_bound_params17-False-TypeError-missing a required argument]": 0.0010494989692233503,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_bind_plan_arguments_1[_f5-plan_args18-plan_kwargs18-plan_bound_params18-True-Exception-]": 0.0010508679843042046,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_bind_plan_arguments_1[_f5-plan_args19-plan_kwargs19-plan_bound_params19-True-Exception-]": 0.0010469389671925455,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_bind_plan_arguments_1[_f5-plan_args20-plan_kwargs20-plan_bound_params20-True-Exception-]": 0.0010549589642323554,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_bind_plan_arguments_1[_f5-plan_args21-plan_kwargs21-plan_bound_params21-True-Exception-]": 0.0010558819631114602,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_build_device_name_list_1[:+.*-expected_name_list5]": 0.0007959230279084295,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_build_device_name_list_1[:+.+:^db0-expected_name_list9]": 0.0008426080166827887,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_build_device_name_list_1[:-.*-expected_name_list6]": 0.0007237029785756022,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_build_device_name_list_1[:-.+:^db0-expected_name_list7]": 0.0008041999826673418,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_build_device_name_list_1[:-.+:^db0:^dc-expected_name_list11]": 0.0013140930095687509,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_build_device_name_list_1[:-^da:?^da:depth=2-expected_name_list22]": 0.0007466780371032655,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_build_device_name_list_1[:-^da:?motor$:depth=2-expected_name_list21]": 0.0007579799857921898,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_build_device_name_list_1[:.*-expected_name_list4]": 0.000730118015781045,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_build_device_name_list_1[:.+-expected_name_list3]": 0.0007850230031181127,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_build_device_name_list_1[:.+:^db0-expected_name_list8]": 0.0008890579920262098,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_build_device_name_list_1[:?motor$-expected_name_list17]": 0.0007564749685116112,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_build_device_name_list_1[:?motor$:depth=1-expected_name_list18]": 0.0007439290056936443,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_build_device_name_list_1[:?motor$:depth=2-expected_name_list19]": 0.0008995719836093485,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_build_device_name_list_1[:^da:?motor$:depth=1-expected_name_list20]": 0.0009703539835754782,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_build_device_name_list_1[:det$:^db0-expected_name_list10]": 0.0009523059998173267,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_build_device_name_list_1[__DETECTOR__:-.+:^db0:^dc-expected_name_list13]": 0.0007574939809273928,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_build_device_name_list_1[__FLYABLE__:-.+:^(db0)|(db2):^dc-expected_name_list15]": 0.0007864220242481679,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_build_device_name_list_1[__FLYABLE__:-.+:^db0:^dc-expected_name_list16]": 0.0007479799969587475,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_build_device_name_list_1[__MOTOR__:-.+:^db0:^dc-expected_name_list12]": 0.0007936150068417192,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_build_device_name_list_1[__MOTOR__:?.*db0_motor.*:depth=3-expected_name_list25]": 0.000759524991735816,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_build_device_name_list_1[__MOTOR__:^da:?motor$:depth=1-expected_name_list23]": 0.0007437109888996929,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_build_device_name_list_1[__READABLE__:-.+:^(db0)|(db2):^dc-expected_name_list14]": 0.0008843370014801621,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_build_device_name_list_1[__READABLE__:?.*db0_motor.*:depth=3-expected_name_list24]": 0.0007754309917800128,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_build_device_name_list_1[da0_motor-expected_name_list0]": 0.0007160940440371633,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_build_device_name_list_1[da0_motor.db0_motor-expected_name_list1]": 0.0010352390236221254,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_build_device_name_list_1[da0_motor.db0_motor.dc2_det-expected_name_list2]": 0.0007189129828475416,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_build_device_name_list_2_fail": 0.0007153899932745844,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_build_plan_name_list_1[:+count$-expected_name_list6]": 0.0007204269641079009,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_build_plan_name_list_1[:-count$-expected_name_list7]": 0.0007783140172250569,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_build_plan_name_list_1[:?count$-expected_name_list8]": 0.0007908930128905922,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_build_plan_name_list_1[:^count$-expected_name_list3]": 0.0007873459835536778,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_build_plan_name_list_1[:^count-expected_name_list4]": 0.0007933649758342654,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_build_plan_name_list_1[:count$-expected_name_list5]": 0.0007802440086379647,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_build_plan_name_list_1[:count-expected_name_list2]": 0.0007230490155052394,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_build_plan_name_list_1[count-expected_name_list0]": 0.0007282389851752669,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_build_plan_name_list_1[some_plan-expected_name_list1]": 0.0007173240592237562,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_build_plan_name_list_2_fail[:?abc:depth=5-ValueError-Depth specification can not be part of the name pattern for a plan]": 0.0012059150030836463,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_build_plan_name_list_2_fail[__READABLE__:abc-ValueError-Device type can not be included in the name pattern for a plan: '__READABLE__:']": 0.0010856369917746633,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_build_plan_name_list_2_fail[abc.def-ValueError-may contain only one component. Components: ['abc', 'def']]": 0.0009700210357550532,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_check_if_function_allowed_1[permissions_dict0-test_func-root-True]": 0.00587539398111403,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_check_if_function_allowed_1[permissions_dict1-test_func-primary-True]": 0.0053540070075541735,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_check_if_function_allowed_1[permissions_dict2-test_func-root-False]": 0.005110212950967252,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_check_if_function_allowed_1[permissions_dict3-test_func-primary-False]": 0.005123326001921669,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_check_if_function_allowed_1[permissions_dict4-test_func-root-True]": 0.005355305009288713,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_check_if_function_allowed_1[permissions_dict5-test_func-primary-False]": 0.005089810001663864,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_check_if_function_allowed_1[permissions_dict6-test_func-primary-False]": 0.005137438012752682,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_check_if_function_allowed_1[permissions_dict7-test_func-primary-False]": 0.004934193042572588,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_check_if_function_allowed_1[permissions_dict8-test_func-primary-True]": 0.005092177976621315,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_check_if_function_allowed_1[permissions_dict9-test_func-primary-False]": 0.005315161979524419,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_check_if_function_allowed_2[permissions_dict0-KeyError-does not contain 'user_groups' key]": 0.0008282560156658292,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_check_if_function_allowed_2[permissions_dict1-KeyError-No permissions are defined for user group 'primary']": 0.0011794519668910652,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_check_if_function_allowed_2[permissions_dict2-KeyError-No permissions are defined for user group 'root']": 0.002055513032246381,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_check_ranges[params0-param_list0-True-]": 0.0008047529845498502,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_check_ranges[params1-param_list1-False-Value 1 is out of range [5, 15]]": 0.0007824710046406835,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_check_ranges[params10-param_list10-True-]": 0.0008183770114555955,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_check_ranges[params11-param_list11-False-Value 1 is out of range [5, 15]]": 0.0007557379722129554,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_check_ranges[params12-param_list12-False-Value 19 is out of range [5, 15]]": 0.0009367939492221922,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_check_ranges[params13-param_list13-False-Value 50 is out of range [5, 15]]": 0.000854252022691071,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_check_ranges[params14-param_list14-False-Value 50 is out of range [5, 15]]": 0.0007355690177064389,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_check_ranges[params15-param_list15-False-Value 19 is out of range [5, 15]]": 0.0007399440219160169,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_check_ranges[params16-param_list16-True-]": 0.0009908289939630777,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_check_ranges[params17-param_list17-False-Parameter value is out of range: key='a', value='3': Value 3 is out of range [5, 15]\\nParameter value is out of range: key='b', value='150': Value 150 is out of range [95, 120.3]]": 0.0007148519798647612,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_check_ranges[params18-param_list18-True-]": 0.0006898720166645944,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_check_ranges[params19-param_list19-False-Value 1 is out of range [5, inf]]": 0.0006899479776620865,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_check_ranges[params2-param_list2-False-Value 17 is out of range [5, 15]]": 0.0007568099827039987,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_check_ranges[params20-param_list20-True-]": 0.0008624349720776081,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_check_ranges[params21-param_list21-False-Value 16 is out of range [-inf, 15]]": 0.0009394190274178982,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_check_ranges[params22-param_list22-True-]": 0.0007715850078966469,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_check_ranges[params3-param_list3-True-]": 0.0007716229883953929,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_check_ranges[params4-param_list4-False-Value 1.2 is out of range [5.5, 14.3]]": 0.0007284669845830649,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_check_ranges[params5-param_list5-False-Value 16.34 is out of range [5.5, 14.3]]": 0.0007037489849608392,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_check_ranges[params6-param_list6-True-]": 0.0007923890079837292,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_check_ranges[params7-param_list7-False-Value 0 is out of range [5, 15]]": 0.0008301750058308244,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_check_ranges[params8-param_list8-False-Value 19 is out of range [5, 15]]": 0.0007753960089758039,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_check_ranges[params9-param_list9-False-Value 0 is out of range [5, 15]]": 0.0007316240225918591,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_construct_parameters_1[external_decode-True-]": 0.0013992679887451231,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_construct_parameters_1[internal_decode-True-]": 0.001355169981252402,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_construct_parameters_1[kind_missing-False-Description for parameter contains no key 'kind']": 0.0015246509574353695,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_construct_parameters_1[name_missing-False-Description for parameter contains no key 'name']": 0.0015375739603769034,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_decode_parameter_types_and_defaults_1[parameters0-expected_types0-True-True-]": 0.004014058009488508,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_decode_parameter_types_and_defaults_1[parameters1-expected_types1-False-True-]": 0.0035507159773260355,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_decode_parameter_types_and_defaults_1[parameters2-expected_types2-True-True-]": 0.0031516220478806645,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_decode_parameter_types_and_defaults_1[parameters3-None-True-False-No 'name' key in the parameter description]": 0.0014740719634573907,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_decode_parameter_types_and_defaults_1[parameters4-None-True-False-Failed to decode the default value 'det']": 0.001165721972938627,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_decode_parameter_types_and_defaults_1[parameters5-None-True-False-Failed to process annotation 'some-type']": 0.0013010779803153127,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_devices_from_nspace": 0.024190405994886532,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_extract_script_root_path_1[params0-/abc/def]": 0.0006626530375797302,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_extract_script_root_path_1[params1-None]": 0.0005621329764835536,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_extract_script_root_path_1[params2-/abc/def]": 0.0006813710206188262,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_extract_script_root_path_1[params3-None]": 0.0006378949910867959,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_filter_device_name_list_1[allow_patterns0-disallow_patterns0-expected_name_list0]": 0.0009405710152350366,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_filter_device_name_list_1[allow_patterns1-disallow_patterns1-expected_name_list1]": 0.0010384010092820972,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_filter_device_name_list_1[allow_patterns10-disallow_patterns10-expected_name_list10]": 0.001093691011192277,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_filter_device_name_list_1[allow_patterns11-disallow_patterns11-expected_name_list11]": 0.0009623190271668136,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_filter_device_name_list_1[allow_patterns12-disallow_patterns12-expected_name_list12]": 0.001057735993526876,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_filter_device_name_list_1[allow_patterns13-disallow_patterns13-expected_name_list13]": 0.0012692339660134166,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_filter_device_name_list_1[allow_patterns14-disallow_patterns14-expected_name_list14]": 0.0010851809929590672,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_filter_device_name_list_1[allow_patterns15-disallow_patterns15-expected_name_list15]": 0.0010468059626873583,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_filter_device_name_list_1[allow_patterns16-disallow_patterns16-expected_name_list16]": 0.0009570120309945196,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_filter_device_name_list_1[allow_patterns2-disallow_patterns2-expected_name_list2]": 0.0009945720084942877,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_filter_device_name_list_1[allow_patterns3-disallow_patterns3-expected_name_list3]": 0.0009208080591633916,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_filter_device_name_list_1[allow_patterns4-disallow_patterns4-expected_name_list4]": 0.0009016630065161735,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_filter_device_name_list_1[allow_patterns5-disallow_patterns5-expected_name_list5]": 0.001150070020230487,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_filter_device_name_list_1[allow_patterns6-disallow_patterns6-expected_name_list6]": 0.0011327659885864705,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_filter_device_name_list_1[allow_patterns7-disallow_patterns7-expected_name_list7]": 0.0011223740293644369,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_filter_device_name_list_1[allow_patterns8-disallow_patterns8-expected_name_list8]": 0.0009878069977276027,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_filter_device_name_list_1[allow_patterns9-disallow_patterns9-expected_name_list9]": 0.0009890559886116534,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_find_and_replace_built_in_types_1[__DEVICE__-plans3-devices3-enums3-str-False-True]": 0.0011535899830050766,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_find_and_replace_built_in_types_1[__DEVICE__-plans8-devices8-enums8-__DEVICE__-False-False]": 0.0010702429863158613,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_find_and_replace_built_in_types_1[__PLAN_OR_DEVICE__-plans4-devices4-enums4-str-True-True]": 0.001079626992577687,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_find_and_replace_built_in_types_1[__PLAN_OR_DEVICE__-plans9-devices9-enums9-__PLAN_OR_DEVICE__-False-False]": 0.001055803004419431,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_find_and_replace_built_in_types_1[__PLAN__-plans2-devices2-enums2-str-True-False]": 0.001274573034606874,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_find_and_replace_built_in_types_1[__PLAN__-plans7-devices7-enums7-__PLAN__-False-False]": 0.0010489340056665242,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_find_and_replace_built_in_types_1[some_type-None-None-None-some_type-False-False]": 0.0010916650062426925,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_find_and_replace_built_in_types_1[some_type-plans1-devices1-enums1-some_type-False-False]": 0.0010658329993020743,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_find_and_replace_built_in_types_1[typing.List[__PLAN__]-plans5-devices5-enums5-typing.List[str]-True-False]": 0.0010472809663042426,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_find_and_replace_built_in_types_1[typing.Union[typing.List[__PLAN__], typing.List[__DEVICE__]]-plans6-devices6-enums6-typing.Union[typing.List[str], typing.List[str]]-True-True]": 0.0010570280137471855,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_format_text_descriptions_1[_plan_ftd1a-desc_plain0-desc_html0]": 0.001018659007968381,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_format_text_descriptions_1[_plan_ftd1b-desc_plain1-desc_html1]": 0.0010859610047191381,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_format_text_descriptions_1[_plan_ftd1c-desc_plain2-desc_html2]": 0.001811587979318574,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_format_text_descriptions_1[_plan_ftd1d-desc_plain3-desc_html3]": 0.000886529014678672,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_format_text_descriptions_1[_plan_ftd1e-desc_plain4-desc_html4]": 0.000813779974123463,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_format_text_descriptions_1[_plan_ftd1f-desc_plain5-desc_html5]": 0.0013323900348041207,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_get_default_startup_dir": 0.0006323120032902807,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_get_nspace_object_1[False-count-True-False-True]": 0.023629771982086822,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_get_nspace_object_1[False-det-False-True-True]": 0.02262275299290195,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_get_nspace_object_1[False-det.val-False-True-True]": 0.022988292999798432,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_get_nspace_object_1[False-sim_bundle_A.mtrs.a-False-False-False]": 0.031448038993403316,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_get_nspace_object_1[False-sim_bundle_A.mtrs.z-False-True-True]": 0.02434663602616638,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_get_nspace_object_1[False-sim_bundle_A.unknown.z-False-False-False]": 0.025333636003779247,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_get_nspace_object_1[False-unknown-False-False-False]": 0.02265994600020349,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_get_nspace_object_1[True-count-True-False-True]": 0.023649741982808337,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_get_nspace_object_1[True-det-False-True-True]": 0.024171267985366285,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_get_nspace_object_1[True-det.val-False-True-True]": 0.02409905000240542,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_get_nspace_object_1[True-sim_bundle_A.mtrs.a-False-False-False]": 0.023328588024014607,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_get_nspace_object_1[True-sim_bundle_A.mtrs.z-False-True-True]": 0.025742628029547632,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_get_nspace_object_1[True-sim_bundle_A.unknown.z-False-False-False]": 0.023842206981498748,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_get_nspace_object_1[True-unknown-False-False-False]": 0.023563621973153204,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_is_object_name_in_list_1[50-False]": 0.0007085640099830925,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_is_object_name_in_list_1[:da0_motor-False]": 0.0008425959676969796,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_is_object_name_in_list_1[da0_motor-True]": 0.0010807310172822326,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_is_object_name_in_list_1[da0_motor.db0_motor-True]": 0.000964629027293995,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_is_object_name_in_list_1[da0_motor.db0_motor.dc3_motor.dd1_motor-True]": 0.0008420299855060875,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_is_object_name_in_list_1[da0_motor.db0_motor.dc3_motor.not_exist-False]": 0.0007195099897217005,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_is_object_name_in_list_1[da0_motor.db0_motor.dc4_motor-False]": 0.0009252519812434912,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_is_object_name_in_list_1[da0_motor.db0_motor.not_exist.dd1_motor-False]": 0.0007436359883286059,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_is_object_name_in_list_1[da0_motor.not_exist.dc3_motor.dd1_motor-False]": 0.0009584380313754082,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_is_object_name_in_list_1[da2_det-False]": 0.0009585800289642066,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_is_object_name_in_list_1[invalid-name-False]": 0.0007086910190992057,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_is_object_name_in_list_1[not_exist-False]": 0.001011365035083145,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_load_allowed_plans_and_devices_1[None-None-True-False-False]": 0.0011290250113233924,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_load_allowed_plans_and_devices_1[None-None-True-False-True]": 0.0011073110217694193,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_load_allowed_plans_and_devices_1[None-user_group_permissions.yaml-True-True-False]": 0.009086136007681489,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_load_allowed_plans_and_devices_1[None-user_group_permissions.yaml-True-True-True]": 0.009060884010978043,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_load_allowed_plans_and_devices_1[existing_plans_and_devices.yaml-None-False-False-False]": 0.24743585102260113,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_load_allowed_plans_and_devices_1[existing_plans_and_devices.yaml-None-False-False-True]": 0.2817111700132955,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_load_allowed_plans_and_devices_1[existing_plans_and_devices.yaml-user_group_permissions.yaml-False-True-False]": 0.2742533709970303,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_load_allowed_plans_and_devices_1[existing_plans_and_devices.yaml-user_group_permissions.yaml-False-True-True]": 0.43866985602653585,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_load_allowed_plans_and_devices_2[user_groups:\\n root: # The group includes all available plan and devices\\n allowed_plans:\\n - \":.*\" # A different way to allow all\\n forbidden_plans:\\n - null # Nothing is forbidden\\n allowed_devices:\\n - \":?.*\" # A different way to allow all\\n forbidden_devices:\\n - null # Nothing is forbidden\\n primary: # The group includes beamline staff, includes all or most of the plans and devices\\n allowed_plans:\\n - \":^(?!.*junk)\" # Allow all plans that don't contain 'junk' in their names\\n forbidden_plans:\\n - null # Nothing is forbidden\\n allowed_devices:\\n - \":+^(?!.*junk):?.*\" # Allow all devices that don't contain 'junk' in their names\\n forbidden_devices:\\n - null # Nothing is forbidden\\n-True-True-False]": 0.6639516089635435,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_load_allowed_plans_and_devices_2[user_groups:\\n root: # The group includes all available plan and devices\\n allowed_plans:\\n - \":.*\" # A different way to allow all\\n forbidden_plans:\\n - null # Nothing is forbidden\\n allowed_devices:\\n - \":?.*\" # A different way to allow all\\n forbidden_devices:\\n - null # Nothing is forbidden\\n primary: # The group includes beamline staff, includes all or most of the plans and devices\\n allowed_plans:\\n - \":^(?!.*junk)\" # Allow all plans that don't contain 'junk' in their names\\n forbidden_plans:\\n - null # Nothing is forbidden\\n allowed_devices:\\n - \":+^(?!.*junk):?.*\" # Allow all devices that don't contain 'junk' in their names\\n forbidden_devices:\\n - null # Nothing is forbidden\\n-True-True-True]": 0.47932963201310486,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_load_allowed_plans_and_devices_2[user_groups:\\n root: # The group includes all available plan and devices\\n allowed_plans:\\n - \":^(?!.*junk)\" # Allow all plans that don't contain 'junk' in their names\\n forbidden_plans:\\n - null # Nothing is forbidden\\n allowed_devices:\\n - \":?^(?!.*junk)\" # Allow all devices that don't contain 'junk' in their names\\n forbidden_devices:\\n - null # Nothing is forbidden\\n primary: # The group includes beamline staff, includes all or most of the plans and devices\\n allowed_plans:\\n - \":.*\" # A different way to allow all\\n forbidden_plans:\\n - null # Nothing is forbidden\\n allowed_devices:\\n - \":?.*\" # A different way to allow all\\n forbidden_devices:\\n - null # Nothing is forbidden\\n-True-False-False]": 0.47856127595878206,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_load_allowed_plans_and_devices_2[user_groups:\\n root: # The group includes all available plan and devices\\n allowed_plans:\\n - \":^(?!.*junk)\" # Allow all plans that don't contain 'junk' in their names\\n forbidden_plans:\\n - null # Nothing is forbidden\\n allowed_devices:\\n - \":?^(?!.*junk)\" # Allow all devices that don't contain 'junk' in their names\\n forbidden_devices:\\n - null # Nothing is forbidden\\n primary: # The group includes beamline staff, includes all or most of the plans and devices\\n allowed_plans:\\n - \":.*\" # A different way to allow all\\n forbidden_plans:\\n - null # Nothing is forbidden\\n allowed_devices:\\n - \":?.*\" # A different way to allow all\\n forbidden_devices:\\n - null # Nothing is forbidden\\n-True-False-True]": 0.48846047901315615,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_load_allowed_plans_and_devices_2[user_groups:\\n root: # The group includes all available plan and devices\\n allowed_plans:\\n - null # Allow all\\n forbidden_plans:\\n - \":^junk_plan$\"\\n allowed_devices:\\n - null # Allow all\\n forbidden_devices:\\n - \":+^junk_device$:?.*\"\\n primary: # The group includes beamline staff, includes all or most of the plans and devices\\n allowed_plans:\\n - \":.*\" # A different way to allow all\\n forbidden_plans:\\n - null # Nothing is forbidden\\n allowed_devices:\\n - \":?.*\" # A different way to allow all\\n forbidden_devices:\\n - null # Nothing is forbidden\\n-True-False-False]": 0.8916762979933992,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_load_allowed_plans_and_devices_2[user_groups:\\n root: # The group includes all available plan and devices\\n allowed_plans:\\n - null # Allow all\\n forbidden_plans:\\n - \":^junk_plan$\"\\n allowed_devices:\\n - null # Allow all\\n forbidden_devices:\\n - \":+^junk_device$:?.*\"\\n primary: # The group includes beamline staff, includes all or most of the plans and devices\\n allowed_plans:\\n - \":.*\" # A different way to allow all\\n forbidden_plans:\\n - null # Nothing is forbidden\\n allowed_devices:\\n - \":?.*\" # A different way to allow all\\n forbidden_devices:\\n - null # Nothing is forbidden\\n-True-False-True]": 0.47547513400786556,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_load_allowed_plans_and_devices_2[user_groups:\\n root: # The group includes all available plan and devices\\n allowed_plans:\\n - null # Allow all\\n forbidden_plans:\\n - null # Nothing is forbidden\\n allowed_devices:\\n - null # Allow all\\n forbidden_devices:\\n - null # Nothing is forbidden\\n primary: # The group includes beamline staff, includes all or most of the plans and devices\\n allowed_plans:\\n - \":.*\" # A different way to allow all\\n forbidden_plans:\\n - null # Nothing is forbidden\\n allowed_devices:\\n - \":?.*\" # A different way to allow all\\n forbidden_devices:\\n - null # Nothing is forbidden\\n-False-False-False]": 0.4720938079699408,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_load_allowed_plans_and_devices_2[user_groups:\\n root: # The group includes all available plan and devices\\n allowed_plans:\\n - null # Allow all\\n forbidden_plans:\\n - null # Nothing is forbidden\\n allowed_devices:\\n - null # Allow all\\n forbidden_devices:\\n - null # Nothing is forbidden\\n primary: # The group includes beamline staff, includes all or most of the plans and devices\\n allowed_plans:\\n - \":.*\" # A different way to allow all\\n forbidden_plans:\\n - null # Nothing is forbidden\\n allowed_devices:\\n - \":?.*\" # A different way to allow all\\n forbidden_devices:\\n - null # Nothing is forbidden\\n-False-False-True]": 0.48955164998187684,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_load_allowed_plans_and_devices_3[user_groups:\\n root: # The group includes all available plan and devices\\n allowed_plans:\\n - null # Allow all\\n allowed_devices:\\n - null # Allow all\\n primary: # The group includes beamline staff, includes all or most of the plans and devices\\n allowed_plans:\\n - \":?.*\" # A different way to allow all\\n forbidden_plans:\\n - null # Nothing is forbidden\\n allowed_devices:\\n - \":?.*\" # A different way to allow all\\n forbidden_devices:\\n - null # Nothing is forbidden\\n-False-False-False]": 0.6715444030123763,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_load_allowed_plans_and_devices_3[user_groups:\\n root: # The group includes all available plan and devices\\n allowed_plans:\\n - null # Allow all\\n allowed_devices:\\n - null # Allow all\\n primary: # The group includes beamline staff, includes all or most of the plans and devices\\n allowed_plans:\\n - \":?.*\" # A different way to allow all\\n forbidden_plans:\\n - null # Nothing is forbidden\\n allowed_devices:\\n - \":?.*\" # A different way to allow all\\n forbidden_devices:\\n - null # Nothing is forbidden\\n-False-False-True]": 0.4751636320143007,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_load_allowed_plans_and_devices_3[user_groups:\\n root: # The group includes all available plan and devices\\n allowed_plans:\\n - null # Allow all\\n forbidden_plans:\\n - null # Nothing is forbidden\\n allowed_devices:\\n - null # Allow all\\n forbidden_devices:\\n - null # Nothing is forbidden\\n primary: # The group includes beamline staff, includes all or most of the plans and devices\\n allowed_plans:\\n - \":?.*\" # A different way to allow all\\n allowed_devices:\\n - \":?.*\" # A different way to allow all\\n-False-False-False]": 0.6621559659542982,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_load_allowed_plans_and_devices_3[user_groups:\\n root: # The group includes all available plan and devices\\n allowed_plans:\\n - null # Allow all\\n forbidden_plans:\\n - null # Nothing is forbidden\\n allowed_devices:\\n - null # Allow all\\n forbidden_devices:\\n - null # Nothing is forbidden\\n primary: # The group includes beamline staff, includes all or most of the plans and devices\\n allowed_plans:\\n - \":?.*\" # A different way to allow all\\n allowed_devices:\\n - \":?.*\" # A different way to allow all\\n-False-False-True]": 0.48066465998999774,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_load_allowed_plans_and_devices_3[user_groups:\\n root: # The group includes all available plan and devices\\n allowed_plans:\\n - null # Allow all\\n forbidden_plans:\\n - null # Nothing is forbidden\\n allowed_devices:\\n - null # Allow all\\n forbidden_devices:\\n - null # Nothing is forbidden\\n primary: # The group includes beamline staff, includes all or most of the plans and devices\\n allowed_plans:\\n - \":?.*\" # A different way to allow all\\n forbidden_plans:\\n - null # Nothing is forbidden\\n allowed_devices:\\n - \":?.*\" # A different way to allow all\\n forbidden_devices:\\n - null # Nothing is forbidden\\n-False-False-False]": 0.4920882649894338,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_load_allowed_plans_and_devices_3[user_groups:\\n root: # The group includes all available plan and devices\\n allowed_plans:\\n - null # Allow all\\n forbidden_plans:\\n - null # Nothing is forbidden\\n allowed_devices:\\n - null # Allow all\\n forbidden_devices:\\n - null # Nothing is forbidden\\n primary: # The group includes beamline staff, includes all or most of the plans and devices\\n allowed_plans:\\n - \":?.*\" # A different way to allow all\\n forbidden_plans:\\n - null # Nothing is forbidden\\n allowed_devices:\\n - \":?.*\" # A different way to allow all\\n forbidden_devices:\\n - null # Nothing is forbidden\\n-False-False-True]": 0.4842391700076405,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_load_allowed_plans_and_devices_3[user_groups:\\n root: # The group includes all available plan and devices\\n allowed_plans:\\n - null # Allow all\\n forbidden_plans:\\n - null # Nothing is forbidden\\n allowed_devices:\\n - null # Allow all\\n forbidden_devices:\\n - null # Nothing is forbidden\\n primary: # The group includes beamline staff, includes all or most of the plans and devices\\n forbidden_plans:\\n - null # Nothing is forbidden\\n forbidden_devices:\\n - null # Nothing is forbidden\\n-False-True-False]": 0.4999565049947705,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_load_allowed_plans_and_devices_3[user_groups:\\n root: # The group includes all available plan and devices\\n allowed_plans:\\n - null # Allow all\\n forbidden_plans:\\n - null # Nothing is forbidden\\n allowed_devices:\\n - null # Allow all\\n forbidden_devices:\\n - null # Nothing is forbidden\\n primary: # The group includes beamline staff, includes all or most of the plans and devices\\n forbidden_plans:\\n - null # Nothing is forbidden\\n forbidden_devices:\\n - null # Nothing is forbidden\\n-False-True-True]": 0.500431223976193,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_load_allowed_plans_and_devices_3[user_groups:\\n root: # The group includes all available plan and devices\\n forbidden_plans:\\n - null # Nothing is forbidden\\n forbidden_devices:\\n - null # Nothing is forbidden\\n primary: # The group includes beamline staff, includes all or most of the plans and devices\\n allowed_plans:\\n - \":?.*\" # A different way to allow all\\n forbidden_plans:\\n - null # Nothing is forbidden\\n allowed_devices:\\n - \":?.*\" # A different way to allow all\\n forbidden_devices:\\n - null # Nothing is forbidden\\n-True-True-False]": 0.47996292199241,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_load_allowed_plans_and_devices_3[user_groups:\\n root: # The group includes all available plan and devices\\n forbidden_plans:\\n - null # Nothing is forbidden\\n forbidden_devices:\\n - null # Nothing is forbidden\\n primary: # The group includes beamline staff, includes all or most of the plans and devices\\n allowed_plans:\\n - \":?.*\" # A different way to allow all\\n forbidden_plans:\\n - null # Nothing is forbidden\\n allowed_devices:\\n - \":?.*\" # A different way to allow all\\n forbidden_devices:\\n - null # Nothing is forbidden\\n-True-True-True]": 0.4837031310016755,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_load_allowed_plans_and_devices_4[user_groups:\\n root: # The group includes all available plan and devices\\n allowed_plans:\\n - null # Everything is allowed\\n allowed_devices:\\n - \":g_B$:?.*\" # Allow 'stg_B'\\n primary: # The group includes beamline staff, includes all or most of the plans and devices\\n allowed_plans:\\n - \":.*\" # A different way to allow all\\n allowed_devices:\\n - \":?.*\" # A different way to allow all\\n-dev13-dev23-dev33-False]": 0.5381619280087762,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_load_allowed_plans_and_devices_4[user_groups:\\n root: # The group includes all available plan and devices\\n allowed_plans:\\n - null # Everything is allowed\\n allowed_devices:\\n - \":g_B$:?.*\" # Allow 'stg_B'\\n primary: # The group includes beamline staff, includes all or most of the plans and devices\\n allowed_plans:\\n - \":.*\" # A different way to allow all\\n allowed_devices:\\n - \":?.*\" # A different way to allow all\\n-dev13-dev23-dev33-True]": 0.5488129170262255,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_load_allowed_plans_and_devices_4[user_groups:\\n root: # The group includes all available plan and devices\\n allowed_plans:\\n - null # Everything is allowed\\n allowed_devices:\\n - null # Everything is allowed\\n forbidden_devices:\\n - \":g_B$:?.*\" # Block 'stg_B'\\n primary: # The group includes beamline staff, includes all or most of the plans and devices\\n allowed_plans:\\n - \":.*\" # A different way to allow all\\n allowed_devices:\\n - \":?.*\" # A different way to allow all\\n-dev14-dev24-dev34-False]": 0.7332840409944765,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_load_allowed_plans_and_devices_4[user_groups:\\n root: # The group includes all available plan and devices\\n allowed_plans:\\n - null # Everything is allowed\\n allowed_devices:\\n - null # Everything is allowed\\n forbidden_devices:\\n - \":g_B$:?.*\" # Block 'stg_B'\\n primary: # The group includes beamline staff, includes all or most of the plans and devices\\n allowed_plans:\\n - \":.*\" # A different way to allow all\\n allowed_devices:\\n - \":?.*\" # A different way to allow all\\n-dev14-dev24-dev34-True]": 0.542853650986217,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_load_allowed_plans_and_devices_4[user_groups:\\n root: # The group includes all available plan and devices\\n allowed_plans:\\n - null # Everything is allowed\\n allowed_devices:\\n - null # Everything is allowed\\n primary: # The group includes beamline staff, includes all or most of the plans and devices\\n allowed_plans:\\n - \":.*\" # A different way to allow all\\n forbidden_plans:\\n - null # Nothing is forbidden\\n allowed_devices:\\n - \":?.*\" # A different way to allow all\\n forbidden_devices:\\n - \":g_B$:?.*\" # Block 'stg_B'\\n-dev12-dev22-dev32-False]": 0.7232834769820329,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_load_allowed_plans_and_devices_4[user_groups:\\n root: # The group includes all available plan and devices\\n allowed_plans:\\n - null # Everything is allowed\\n allowed_devices:\\n - null # Everything is allowed\\n primary: # The group includes beamline staff, includes all or most of the plans and devices\\n allowed_plans:\\n - \":.*\" # A different way to allow all\\n forbidden_plans:\\n - null # Nothing is forbidden\\n allowed_devices:\\n - \":?.*\" # A different way to allow all\\n forbidden_devices:\\n - \":g_B$:?.*\" # Block 'stg_B'\\n-dev12-dev22-dev32-True]": 0.5374164250097238,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_load_allowed_plans_and_devices_4[user_groups:\\n root: # The group includes all available plan and devices\\n allowed_plans:\\n - null # Everything is allowed\\n allowed_devices:\\n - null # Everything is allowed\\n primary: # The group includes beamline staff, includes all or most of the plans and devices\\n allowed_plans:\\n - \":.*\" # A different way to allow all\\n forbidden_plans:\\n - null # Nothing is forbidden\\n allowed_devices:\\n - \":?.*\" # A different way to allow all\\n forbidden_devices:\\n - null # Nothing is forbidden\\n-dev10-dev20-dev30-False]": 0.5555827370262705,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_load_allowed_plans_and_devices_4[user_groups:\\n root: # The group includes all available plan and devices\\n allowed_plans:\\n - null # Everything is allowed\\n allowed_devices:\\n - null # Everything is allowed\\n primary: # The group includes beamline staff, includes all or most of the plans and devices\\n allowed_plans:\\n - \":.*\" # A different way to allow all\\n forbidden_plans:\\n - null # Nothing is forbidden\\n allowed_devices:\\n - \":?.*\" # A different way to allow all\\n forbidden_devices:\\n - null # Nothing is forbidden\\n-dev10-dev20-dev30-True]": 0.9309373360010795,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_load_allowed_plans_and_devices_4[user_groups:\\n root: # The group includes all available plan and devices\\n allowed_plans:\\n - null # Everything is allowed\\n allowed_devices:\\n - null # Everything is allowed\\n primary: # The group includes beamline staff, includes all or most of the plans and devices\\n allowed_plans:\\n - \":.*\" # A different way to allow all\\n forbidden_plans:\\n - null # Nothing is forbidden\\n allowed_devices:\\n - \":g_B$:?.*\" # Allow 'stg_B'\\n forbidden_devices:\\n - null # Nothing is forbidden\\n-dev11-dev21-dev31-False]": 0.5422884460131172,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_load_allowed_plans_and_devices_4[user_groups:\\n root: # The group includes all available plan and devices\\n allowed_plans:\\n - null # Everything is allowed\\n allowed_devices:\\n - null # Everything is allowed\\n primary: # The group includes beamline staff, includes all or most of the plans and devices\\n allowed_plans:\\n - \":.*\" # A different way to allow all\\n forbidden_plans:\\n - null # Nothing is forbidden\\n allowed_devices:\\n - \":g_B$:?.*\" # Allow 'stg_B'\\n forbidden_devices:\\n - null # Nothing is forbidden\\n-dev11-dev21-dev31-True]": 0.539790509006707,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_load_allowed_plans_and_devices_5[empty_device_list]": 0.712256723025348,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_load_allowed_plans_and_devices_5[empty_lists]": 0.7067964210000355,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_load_allowed_plans_and_devices_5[empty_plan_list]": 0.5341769070073497,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_load_allowed_plans_and_devices_5[full_lists]": 0.5584055059589446,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_load_allowed_plans_and_devices_5[path_invalid]": 0.5483933579816949,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_load_allowed_plans_and_devices_5[path_none]": 0.708692467014771,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_load_existing_plans_and_devices_1": 0.2513368479849305,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_load_existing_plans_and_devices_2[corrupt_file1]": 0.001462002022890374,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_load_existing_plans_and_devices_2[corrupt_file2]": 0.0015203799994196743,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_load_existing_plans_and_devices_2[empty_file]": 0.0013575119664892554,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_load_existing_plans_and_devices_2[no_file]": 0.0016589409788139164,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_load_existing_plans_and_devices_2[normal]": 0.25623242699657567,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_load_profile_collection_01": 0.01942157300072722,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_load_profile_collection_02": 0.016978431987809017,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_load_profile_collection_03[\\n\\n\\na = 10 # get_ipython().user_ns\\n-True--False]": 0.0204804899985902,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_load_profile_collection_03[\\n\\n\\na = 10 # get_ipython().user_ns\\n-True--True]": 0.018001738004386425,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_load_profile_collection_03[\\n\\n\\nfrom IPython import get_ipython # Some comment\\nget_ipython().user_ns\\n\\nfrom IPython import get_ipython# Some comment\\nget_ipython().user_ns\\nif True:\\n # No comment\\n from IPython import get_ipython #\\n get_ipython().user_ns\\n\\n from IPython import get_ipython# Some comment\\n get_ipython().user_ns\\n\\n from IPython import get_ipython# Some comment # Another comment\\n get_ipython().user_ns\\n-True--False]": 0.02054586002486758,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_load_profile_collection_03[\\n\\n\\nfrom IPython import get_ipython # Some comment\\nget_ipython().user_ns\\n\\nfrom IPython import get_ipython# Some comment\\nget_ipython().user_ns\\nif True:\\n # No comment\\n from IPython import get_ipython #\\n get_ipython().user_ns\\n\\n from IPython import get_ipython# Some comment\\n get_ipython().user_ns\\n\\n from IPython import get_ipython# Some comment # Another comment\\n get_ipython().user_ns\\n-True--True]": 0.020795024989638478,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_load_profile_collection_03[\\n\\n\\nfrom IPython import get_ipython\\n\\nget_ipython().user_ns\\n\\n-True--False]": 0.15521185903344303,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_load_profile_collection_03[\\n\\n\\nfrom IPython import get_ipython\\n\\nget_ipython().user_ns\\n\\n-True--True]": 0.019566371978726238,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_load_profile_collection_03[\\n\\n\\nfrom IPython import version_info #, get_ipython\\n\\nget_ipython().user_ns\\n-True--False]": 0.017358420009259135,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_load_profile_collection_03[\\n\\n\\nfrom IPython import version_info #, get_ipython\\n\\nget_ipython().user_ns\\n-True--True]": 0.023802561045158654,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_load_profile_collection_03[\\n\\n\\nget_ipython().user_ns\\n-True--False]": 0.01941107099992223,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_load_profile_collection_03[\\n\\n\\nget_ipython().user_ns\\n-True--True]": 0.019087863998720422,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_load_profile_collection_03[\\n\\n\\nget_ipython().user_ns\\nfrom IPython import get_ipython\\nget_ipython().user_ns\\nfrom IPython import get_ipython\\nget_ipython().user_ns\\nfrom IPython import get_ipython\\nget_ipython().user_ns\\n\\n-True--False]": 0.020738127001095563,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_load_profile_collection_03[\\n\\n\\nget_ipython().user_ns\\nfrom IPython import get_ipython\\nget_ipython().user_ns\\nfrom IPython import get_ipython\\nget_ipython().user_ns\\nfrom IPython import get_ipython\\nget_ipython().user_ns\\n\\n-True--True]": 0.018427796952892095,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_load_profile_collection_03[\\n\\n\\nif True:\\n from IPython import get_ipython\\n\\n get_ipython().user_ns\\n\\n-True--False]": 0.017988456966122612,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_load_profile_collection_03[\\n\\n\\nif True:\\n from IPython import get_ipython\\n\\n get_ipython().user_ns\\n\\n-True--True]": 0.01752817298984155,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_load_profile_collection_03[\\n\\n\\nraise Exception(\"Manually raised exception.\")\\n\\n-False-Manually raised exception.-False]": 0.0034979119955096394,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_load_profile_collection_03[\\n\\n\\nraise Exception(\"Manually raised exception.\")\\n\\n-False-Manually raised exception.-True]": 0.002953833987703547,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_load_profile_collection_04_fail": 0.0018683680100366473,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_load_profile_collection_05[False]": 0.02020197600359097,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_load_profile_collection_05[True]": 0.05725709901889786,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_load_profile_collection_06": 0.20207828798447736,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_load_profile_collection_07": 0.001817008014768362,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_load_profile_collection_08": 0.0016642279806546867,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_load_profile_collection_09": 0.0017829709977377206,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_load_script_into_existing_nspace_01[scripts0-False]": 0.018253804999403656,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_load_script_into_existing_nspace_01[scripts0-True]": 0.018182723986683413,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_load_script_into_existing_nspace_01[scripts1-False]": 0.01665557301021181,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_load_script_into_existing_nspace_01[scripts1-True]": 0.01840213598916307,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_load_script_into_existing_nspace_02[False-False]": 0.3244896289834287,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_load_script_into_existing_nspace_02[False-True]": 0.42162905298755504,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_load_script_into_existing_nspace_02[True-False]": 1.1989977699995507,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_load_script_into_existing_nspace_02[True-True]": 0.3248971829889342,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_load_script_into_existing_nspace_03": 0.05350558602367528,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_load_script_into_existing_nspace_04[\\na = 50\\nb = c # Undefined variable\\n-NameError-name 'c' is not defined]": 0.05741816901718266,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_load_script_into_existing_nspace_04[\\ndef func():\\n a = 10\\n b = 20 # Indentation\\n-IndentationError-unexpected indent]": 0.04977578003308736,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_load_script_into_existing_nspace_05": 0.0542659500206355,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_load_script_into_existing_nspace_06": 0.052545553975505754,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_load_script_into_existing_nspace_07": 0.048422627995023504,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_load_script_into_existing_nspace_08[False]": 0.0049709400336723775,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_load_script_into_existing_nspace_08[True]": 0.004603983019478619,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_load_script_into_existing_nspace_09": 0.00636234603007324,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_load_script_into_existing_nspace_10": 0.2172278449870646,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_load_script_into_existing_nspace_11": 0.37341975199524313,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_load_script_into_existing_nspace_12": 0.17463058000430465,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_load_startup_module_1[False]": 0.1824014910380356,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_load_startup_module_1[True]": 0.16955503899953328,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_load_startup_module_2": 0.15272553797694854,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_load_startup_module_3": 0.1502873990102671,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_load_startup_module_4": 0.1489174769667443,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_load_startup_script_1[False-False]": 0.08717360600712709,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_load_startup_script_1[False-True]": 0.07933310000225902,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_load_startup_script_1[True-False]": 0.2292946280213073,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_load_startup_script_1[True-True]": 0.2228667110321112,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_load_startup_script_2[False-False]": 0.08226361000561155,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_load_startup_script_2[False-True]": 0.08712950101471506,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_load_startup_script_2[True-False]": 0.3108403750229627,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_load_startup_script_2[True-True]": 0.31157405898557045,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_load_startup_script_3": 0.15574708202620968,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_load_startup_script_4[False-False]": 0.07376974102226086,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_load_startup_script_4[False-True]": 0.07334020300186239,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_load_startup_script_4[True-False]": 0.14779486900079064,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_load_startup_script_4[True-True]": 0.15197417297167704,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_load_startup_script_5": 0.1480011509556789,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_load_startup_script_6": 0.1507237779442221,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_load_startup_script_7": 0.07567096603452228,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_load_user_group_permissions_1": 0.009702480980195105,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_load_user_group_permissions_2_fail": 0.001973872975213453,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_load_user_group_permissions_3_fail": 0.014361206005560234,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_load_user_group_permissions_4_fail": 0.013842134008882567,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_load_user_group_permissions_5_fail[root]": 0.010266494005918503,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_load_user_group_permissions_6_fail": 0.01592331301071681,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_load_worker_startup_code_1[False-False-module]": 0.11521764902863652,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_load_worker_startup_code_1[False-False-script]": 0.22920349100604653,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_load_worker_startup_code_1[False-False-startup_dir]": 0.12175017400295474,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_load_worker_startup_code_1[False-True-module]": 0.1286346390552353,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_load_worker_startup_code_1[False-True-script]": 0.25076166898361407,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_load_worker_startup_code_1[False-True-startup_dir]": 0.13256042799912393,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_load_worker_startup_code_1[True-False-module]": 0.10602702002506703,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_load_worker_startup_code_1[True-False-script]": 0.21217102598166093,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_load_worker_startup_code_1[True-False-startup_dir]": 0.10770306404447183,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_load_worker_startup_code_1[True-True-module]": 0.11532297698431648,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_load_worker_startup_code_1[True-True-script]": 0.22274085498065688,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_load_worker_startup_code_1[True-True-startup_dir]": 0.11004393603070639,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_load_worker_startup_code_2_failing[multiple_sources]": 0.10312488101772033,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_load_worker_startup_code_2_failing[no_sources]": 0.09996475299703889,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_plans_from_nspace": 0.021014198020566255,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_prepare_devices_1[-1-registered_devices2-expected_devices2]": 0.017624389001866803,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_prepare_devices_1[0-registered_devices0-expected_devices0]": 0.01699318498140201,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_prepare_devices_1[1-registered_devices3-expected_devices3]": 0.015004778979346156,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_prepare_devices_1[2-registered_devices10-expected_devices10]": 0.019593950040871277,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_prepare_devices_1[2-registered_devices4-expected_devices4]": 0.01598307999665849,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_prepare_devices_1[2-registered_devices9-expected_devices9]": 0.013593701994977891,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_prepare_devices_1[3-registered_devices5-expected_devices5]": 0.01571053298539482,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_prepare_devices_1[3-registered_devices8-expected_devices8]": 0.012959259998751804,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_prepare_devices_1[4-registered_devices6-expected_devices6]": 0.018062621995341033,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_prepare_devices_1[5-registered_devices7-expected_devices7]": 0.017817545012803748,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_prepare_devices_1[None-registered_devices1-expected_devices1]": 0.01740906701888889,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_prepare_devices_2[1-False-expected_devices0]": 0.0026447540149092674,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_prepare_devices_2[1-True-expected_devices1]": 0.0020211329974699765,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_prepare_devices_2[2-False-expected_devices2]": 0.0018587170052342117,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_prepare_devices_2[2-True-expected_devices3]": 0.0022204049746505916,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_prepare_devices_2[3-False-expected_devices4]": 0.0021833140053786337,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_prepare_devices_2[3-True-expected_devices5]": 0.002229521021945402,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_prepare_devices_2[4-False-expected_devices7]": 0.002467464975779876,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_prepare_devices_2[4-True-expected_devices8]": 0.0022620349773205817,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_prepare_devices_2[None-True-expected_devices6]": 0.0023944810091052204,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_prepare_devices_3[False-0]": 0.002551341982325539,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_prepare_devices_3[False-1]": 0.004152401961619034,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_prepare_devices_3[False-2]": 0.0026725280040409416,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_prepare_devices_3[False-None]": 0.0024882060242816806,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_prepare_devices_3[None-None]": 0.004787471028976142,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_prepare_devices_3[True-0]": 0.0025264499709010124,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_prepare_devices_3[True-1]": 0.002796457032673061,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_prepare_devices_3[True-2]": 0.002568414027336985,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_prepare_devices_3[True-None]": 0.002455369016388431,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_prepare_function_1[func_info0-10]": 0.0019817890133708715,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_prepare_function_1[func_info1-32]": 0.0010674700024537742,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_prepare_function_1[func_info10-None]": 0.001030902989441529,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_prepare_function_1[func_info2-35]": 0.0010443749488331378,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_prepare_function_1[func_info3-72]": 0.0010438500030431896,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_prepare_function_1[func_info4-73]": 0.0013408829981926829,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_prepare_function_1[func_info5-74]": 0.0015614850271958858,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_prepare_function_1[func_info6-A]": 0.001153017015894875,
"bluesky_queueserver/manager/tests/test_profile_ops.py::test_prepare_function_1[func_info7-f]": 0.0010781060555018485,