-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpytestdebug.log
More file actions
1446 lines (1445 loc) · 101 KB
/
pytestdebug.log
File metadata and controls
1446 lines (1445 loc) · 101 KB
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
versions pytest-9.0.2, python-3.13.7.final.0
invocation_dir=C:\Users\yasni\PythonMcp
cwd=C:\Users\yasni\PythonMcp
args=('tests/e2e_tests/test_navigation_about_section_e2e.py', '--headed', '--debug')
pytest_cmdline_main [hook]
config: <_pytest.config.Config object at 0x000001F18C24BB60>
pytest_plugin_registered [hook]
plugin: <Session exitstatus='<UNSET>' testsfailed=0 testscollected=0>
plugin_name: session
manager: <_pytest.config.PytestPluginManager object at 0x000001F18B046E40>
finish pytest_plugin_registered --> [] [hook]
pytest_configure [hook]
config: <_pytest.config.Config object at 0x000001F18C24BB60>
pytest_plugin_registered [hook]
plugin: <_pytest.cacheprovider.LFPlugin object at 0x000001F18EDDFA10>
plugin_name: lfplugin
manager: <_pytest.config.PytestPluginManager object at 0x000001F18B046E40>
finish pytest_plugin_registered --> [] [hook]
pytest_plugin_registered [hook]
plugin: <_pytest.cacheprovider.NFPlugin object at 0x000001F18F1FD6A0>
plugin_name: nfplugin
manager: <_pytest.config.PytestPluginManager object at 0x000001F18B046E40>
finish pytest_plugin_registered --> [] [hook]
pytest_plugin_registered [hook]
plugin: <pytest_rerunfailures.XDistHooks object at 0x000001F18F1FD400>
plugin_name: 2136999973888
manager: <_pytest.config.PytestPluginManager object at 0x000001F18B046E40>
finish pytest_plugin_registered --> [] [hook]
early skip of rewriting module: faulthandler [assertion]
pytest_plugin_registered [hook]
plugin: <class '_pytest.legacypath.LegacyTmpdirPlugin'>
plugin_name: legacypath-tmpdir
manager: <_pytest.config.PytestPluginManager object at 0x000001F18B046E40>
finish pytest_plugin_registered --> [] [hook]
pytest_plugin_registered [hook]
plugin: <_pytest.config.PytestPluginManager object at 0x000001F18B046E40>
plugin_name: 2136931069504
manager: <_pytest.config.PytestPluginManager object at 0x000001F18B046E40>
finish pytest_plugin_registered --> [] [hook]
pytest_plugin_registered [hook]
plugin: <_pytest.config.Config object at 0x000001F18C24BB60>
plugin_name: pytestconfig
manager: <_pytest.config.PytestPluginManager object at 0x000001F18B046E40>
finish pytest_plugin_registered --> [] [hook]
pytest_plugin_registered [hook]
plugin: <module '_pytest.mark' from 'C:\\Users\\yasni\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\_pytest\\mark\\__init__.py'>
plugin_name: mark
manager: <_pytest.config.PytestPluginManager object at 0x000001F18B046E40>
finish pytest_plugin_registered --> [] [hook]
pytest_plugin_registered [hook]
plugin: <module '_pytest.main' from 'C:\\Users\\yasni\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\_pytest\\main.py'>
plugin_name: main
manager: <_pytest.config.PytestPluginManager object at 0x000001F18B046E40>
finish pytest_plugin_registered --> [] [hook]
pytest_plugin_registered [hook]
plugin: <module '_pytest.runner' from 'C:\\Users\\yasni\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\_pytest\\runner.py'>
plugin_name: runner
manager: <_pytest.config.PytestPluginManager object at 0x000001F18B046E40>
finish pytest_plugin_registered --> [] [hook]
pytest_plugin_registered [hook]
plugin: <module '_pytest.fixtures' from 'C:\\Users\\yasni\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\_pytest\\fixtures.py'>
plugin_name: fixtures
manager: <_pytest.config.PytestPluginManager object at 0x000001F18B046E40>
finish pytest_plugin_registered --> [] [hook]
pytest_plugin_registered [hook]
plugin: <module '_pytest.helpconfig' from 'C:\\Users\\yasni\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\_pytest\\helpconfig.py'>
plugin_name: helpconfig
manager: <_pytest.config.PytestPluginManager object at 0x000001F18B046E40>
finish pytest_plugin_registered --> [] [hook]
pytest_plugin_registered [hook]
plugin: <module '_pytest.python' from 'C:\\Users\\yasni\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\_pytest\\python.py'>
plugin_name: python
manager: <_pytest.config.PytestPluginManager object at 0x000001F18B046E40>
finish pytest_plugin_registered --> [] [hook]
pytest_plugin_registered [hook]
plugin: <module '_pytest.terminal' from 'C:\\Users\\yasni\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\_pytest\\terminal.py'>
plugin_name: terminal
manager: <_pytest.config.PytestPluginManager object at 0x000001F18B046E40>
finish pytest_plugin_registered --> [] [hook]
pytest_plugin_registered [hook]
plugin: <module '_pytest.debugging' from 'C:\\Users\\yasni\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\_pytest\\debugging.py'>
plugin_name: debugging
manager: <_pytest.config.PytestPluginManager object at 0x000001F18B046E40>
finish pytest_plugin_registered --> [] [hook]
pytest_plugin_registered [hook]
plugin: <module '_pytest.unittest' from 'C:\\Users\\yasni\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\_pytest\\unittest.py'>
plugin_name: unittest
manager: <_pytest.config.PytestPluginManager object at 0x000001F18B046E40>
finish pytest_plugin_registered --> [] [hook]
pytest_plugin_registered [hook]
plugin: <module '_pytest.capture' from 'C:\\Users\\yasni\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\_pytest\\capture.py'>
plugin_name: capture
manager: <_pytest.config.PytestPluginManager object at 0x000001F18B046E40>
finish pytest_plugin_registered --> [] [hook]
pytest_plugin_registered [hook]
plugin: <module '_pytest.skipping' from 'C:\\Users\\yasni\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\_pytest\\skipping.py'>
plugin_name: skipping
manager: <_pytest.config.PytestPluginManager object at 0x000001F18B046E40>
finish pytest_plugin_registered --> [] [hook]
pytest_plugin_registered [hook]
plugin: <module '_pytest.legacypath' from 'C:\\Users\\yasni\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\_pytest\\legacypath.py'>
plugin_name: legacypath
manager: <_pytest.config.PytestPluginManager object at 0x000001F18B046E40>
finish pytest_plugin_registered --> [] [hook]
pytest_plugin_registered [hook]
plugin: <module '_pytest.tmpdir' from 'C:\\Users\\yasni\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\_pytest\\tmpdir.py'>
plugin_name: tmpdir
manager: <_pytest.config.PytestPluginManager object at 0x000001F18B046E40>
finish pytest_plugin_registered --> [] [hook]
pytest_plugin_registered [hook]
plugin: <module '_pytest.monkeypatch' from 'C:\\Users\\yasni\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\_pytest\\monkeypatch.py'>
plugin_name: monkeypatch
manager: <_pytest.config.PytestPluginManager object at 0x000001F18B046E40>
finish pytest_plugin_registered --> [] [hook]
pytest_plugin_registered [hook]
plugin: <module '_pytest.recwarn' from 'C:\\Users\\yasni\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\_pytest\\recwarn.py'>
plugin_name: recwarn
manager: <_pytest.config.PytestPluginManager object at 0x000001F18B046E40>
finish pytest_plugin_registered --> [] [hook]
pytest_plugin_registered [hook]
plugin: <module '_pytest.pastebin' from 'C:\\Users\\yasni\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\_pytest\\pastebin.py'>
plugin_name: pastebin
manager: <_pytest.config.PytestPluginManager object at 0x000001F18B046E40>
finish pytest_plugin_registered --> [] [hook]
pytest_plugin_registered [hook]
plugin: <module '_pytest.assertion' from 'C:\\Users\\yasni\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\_pytest\\assertion\\__init__.py'>
plugin_name: assertion
manager: <_pytest.config.PytestPluginManager object at 0x000001F18B046E40>
finish pytest_plugin_registered --> [] [hook]
pytest_plugin_registered [hook]
plugin: <module '_pytest.junitxml' from 'C:\\Users\\yasni\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\_pytest\\junitxml.py'>
plugin_name: junitxml
manager: <_pytest.config.PytestPluginManager object at 0x000001F18B046E40>
finish pytest_plugin_registered --> [] [hook]
pytest_plugin_registered [hook]
plugin: <module '_pytest.doctest' from 'C:\\Users\\yasni\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\_pytest\\doctest.py'>
plugin_name: doctest
manager: <_pytest.config.PytestPluginManager object at 0x000001F18B046E40>
finish pytest_plugin_registered --> [] [hook]
pytest_plugin_registered [hook]
plugin: <module '_pytest.cacheprovider' from 'C:\\Users\\yasni\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\_pytest\\cacheprovider.py'>
plugin_name: cacheprovider
manager: <_pytest.config.PytestPluginManager object at 0x000001F18B046E40>
finish pytest_plugin_registered --> [] [hook]
pytest_plugin_registered [hook]
plugin: <module '_pytest.setuponly' from 'C:\\Users\\yasni\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\_pytest\\setuponly.py'>
plugin_name: setuponly
manager: <_pytest.config.PytestPluginManager object at 0x000001F18B046E40>
finish pytest_plugin_registered --> [] [hook]
pytest_plugin_registered [hook]
plugin: <module '_pytest.setupplan' from 'C:\\Users\\yasni\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\_pytest\\setupplan.py'>
plugin_name: setupplan
manager: <_pytest.config.PytestPluginManager object at 0x000001F18B046E40>
finish pytest_plugin_registered --> [] [hook]
pytest_plugin_registered [hook]
plugin: <module '_pytest.stepwise' from 'C:\\Users\\yasni\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\_pytest\\stepwise.py'>
plugin_name: stepwise
manager: <_pytest.config.PytestPluginManager object at 0x000001F18B046E40>
finish pytest_plugin_registered --> [] [hook]
pytest_plugin_registered [hook]
plugin: <module '_pytest.unraisableexception' from 'C:\\Users\\yasni\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\_pytest\\unraisableexception.py'>
plugin_name: unraisableexception
manager: <_pytest.config.PytestPluginManager object at 0x000001F18B046E40>
finish pytest_plugin_registered --> [] [hook]
pytest_plugin_registered [hook]
plugin: <module '_pytest.threadexception' from 'C:\\Users\\yasni\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\_pytest\\threadexception.py'>
plugin_name: threadexception
manager: <_pytest.config.PytestPluginManager object at 0x000001F18B046E40>
finish pytest_plugin_registered --> [] [hook]
pytest_plugin_registered [hook]
plugin: <module '_pytest.warnings' from 'C:\\Users\\yasni\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\_pytest\\warnings.py'>
plugin_name: warnings
manager: <_pytest.config.PytestPluginManager object at 0x000001F18B046E40>
finish pytest_plugin_registered --> [] [hook]
pytest_plugin_registered [hook]
plugin: <module '_pytest.logging' from 'C:\\Users\\yasni\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\_pytest\\logging.py'>
plugin_name: logging
manager: <_pytest.config.PytestPluginManager object at 0x000001F18B046E40>
finish pytest_plugin_registered --> [] [hook]
pytest_plugin_registered [hook]
plugin: <module '_pytest.reports' from 'C:\\Users\\yasni\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\_pytest\\reports.py'>
plugin_name: reports
manager: <_pytest.config.PytestPluginManager object at 0x000001F18B046E40>
finish pytest_plugin_registered --> [] [hook]
pytest_plugin_registered [hook]
plugin: <module '_pytest.faulthandler' from 'C:\\Users\\yasni\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\_pytest\\faulthandler.py'>
plugin_name: faulthandler
manager: <_pytest.config.PytestPluginManager object at 0x000001F18B046E40>
finish pytest_plugin_registered --> [] [hook]
pytest_plugin_registered [hook]
plugin: <module '_pytest.subtests' from 'C:\\Users\\yasni\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\_pytest\\subtests.py'>
plugin_name: subtests
manager: <_pytest.config.PytestPluginManager object at 0x000001F18B046E40>
finish pytest_plugin_registered --> [] [hook]
pytest_plugin_registered [hook]
plugin: <module 'allure_pytest.plugin' from 'C:\\Users\\yasni\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\allure_pytest\\plugin.py'>
plugin_name: allure_pytest
manager: <_pytest.config.PytestPluginManager object at 0x000001F18B046E40>
finish pytest_plugin_registered --> [] [hook]
pytest_plugin_registered [hook]
plugin: <module 'anyio.pytest_plugin' from 'C:\\Users\\yasni\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\anyio\\pytest_plugin.py'>
plugin_name: anyio
manager: <_pytest.config.PytestPluginManager object at 0x000001F18B046E40>
finish pytest_plugin_registered --> [] [hook]
pytest_plugin_registered [hook]
plugin: <module 'pytest_base_url.plugin' from 'C:\\Users\\yasni\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\pytest_base_url\\plugin.py'>
plugin_name: base_url
manager: <_pytest.config.PytestPluginManager object at 0x000001F18B046E40>
finish pytest_plugin_registered --> [] [hook]
pytest_plugin_registered [hook]
plugin: <module 'pytest_playwright.pytest_playwright' from 'C:\\Users\\yasni\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\pytest_playwright\\pytest_playwright.py'>
plugin_name: playwright
manager: <_pytest.config.PytestPluginManager object at 0x000001F18B046E40>
finish pytest_plugin_registered --> [] [hook]
pytest_plugin_registered [hook]
plugin: <module 'pytest_rerunfailures' from 'C:\\Users\\yasni\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\pytest_rerunfailures.py'>
plugin_name: rerunfailures
manager: <_pytest.config.PytestPluginManager object at 0x000001F18B046E40>
finish pytest_plugin_registered --> [] [hook]
pytest_plugin_registered [hook]
plugin: <module 'xdist.plugin' from 'C:\\Users\\yasni\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\xdist\\plugin.py'>
plugin_name: xdist
manager: <_pytest.config.PytestPluginManager object at 0x000001F18B046E40>
finish pytest_plugin_registered --> [] [hook]
pytest_plugin_registered [hook]
plugin: <module 'xdist.looponfail' from 'C:\\Users\\yasni\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\xdist\\looponfail.py'>
plugin_name: xdist.looponfail
manager: <_pytest.config.PytestPluginManager object at 0x000001F18B046E40>
finish pytest_plugin_registered --> [] [hook]
pytest_plugin_registered [hook]
plugin: <CaptureManager _method='fd' _global_capturing=<MultiCapture out=<FDCapture 1 oldfd=9 _state='suspended' tmpfile=<EncodedFile name='<tempfile._TemporaryFileWrapper object at 0x000001F18F1FCEC0>' mode='r+' encoding='utf-8'>> err=<FDCapture 2 oldfd=11 _state='suspended' tmpfile=<EncodedFile name='<tempfile._TemporaryFileWrapper object at 0x000001F18F230CD0>' mode='r+' encoding='utf-8'>> in_=<FDCapture 0 oldfd=7 _state='started' tmpfile=<_io.TextIOWrapper name='nul' mode='r' encoding='utf-8'>> _state='suspended' _in_suspended=False> _capture_fixture=None>
plugin_name: capturemanager
manager: <_pytest.config.PytestPluginManager object at 0x000001F18B046E40>
finish pytest_plugin_registered --> [] [hook]
pytest_plugin_registered [hook]
plugin: <module 'conftest' from 'C:\\Users\\yasni\\PythonMcp\\tests\\conftest.py'>
plugin_name: C:\Users\yasni\PythonMcp\tests\conftest.py
manager: <_pytest.config.PytestPluginManager object at 0x000001F18B046E40>
finish pytest_plugin_registered --> [] [hook]
pytest_plugin_registered [hook]
plugin: <Session exitstatus=<ExitCode.OK: 0> testsfailed=0 testscollected=0>
plugin_name: session
manager: <_pytest.config.PytestPluginManager object at 0x000001F18B046E40>
finish pytest_plugin_registered --> [] [hook]
pytest_plugin_registered [hook]
plugin: <_pytest.cacheprovider.LFPlugin object at 0x000001F18EDDFA10>
plugin_name: lfplugin
manager: <_pytest.config.PytestPluginManager object at 0x000001F18B046E40>
finish pytest_plugin_registered --> [] [hook]
pytest_plugin_registered [hook]
plugin: <_pytest.cacheprovider.NFPlugin object at 0x000001F18F1FD6A0>
plugin_name: nfplugin
manager: <_pytest.config.PytestPluginManager object at 0x000001F18B046E40>
finish pytest_plugin_registered --> [] [hook]
pytest_plugin_registered [hook]
plugin: <pytest_rerunfailures.XDistHooks object at 0x000001F18F1FD400>
plugin_name: 2136999973888
manager: <_pytest.config.PytestPluginManager object at 0x000001F18B046E40>
finish pytest_plugin_registered --> [] [hook]
pytest_plugin_registered [hook]
plugin: <class '_pytest.legacypath.LegacyTmpdirPlugin'>
plugin_name: legacypath-tmpdir
manager: <_pytest.config.PytestPluginManager object at 0x000001F18B046E40>
finish pytest_plugin_registered --> [] [hook]
pytest_plugin_registered [hook]
plugin: <_pytest.terminal.TerminalReporter object at 0x000001F18F1FDD30>
plugin_name: terminalreporter
manager: <_pytest.config.PytestPluginManager object at 0x000001F18B046E40>
finish pytest_plugin_registered --> [] [hook]
matched marked file '_pytest.terminalprogress' (from '_pytest.terminalprogress') [assertion]
find_module called for: _pytest.terminalprogress [assertion]
found cached rewritten pyc for C:\Users\yasni\AppData\Local\Programs\Python\Python313\Lib\site-packages\_pytest\terminalprogress.py [assertion]
pytest_configure [hook]
config: <_pytest.config.Config object at 0x000001F18C24BB60>
pytest_plugin_registered [hook]
plugin: <_pytest.terminal.TerminalProgressPlugin object at 0x000001F18F1FE510>
plugin_name: terminalprogress-plugin
manager: <_pytest.config.PytestPluginManager object at 0x000001F18B046E40>
finish pytest_plugin_registered --> [] [hook]
finish pytest_configure --> [] [hook]
pytest_plugin_registered [hook]
plugin: <module '_pytest.terminalprogress' from 'C:\\Users\\yasni\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\_pytest\\terminalprogress.py'>
plugin_name: terminalprogress
manager: <_pytest.config.PytestPluginManager object at 0x000001F18B046E40>
finish pytest_plugin_registered --> [] [hook]
pytest_plugin_registered [hook]
plugin: <_pytest.logging.LoggingPlugin object at 0x000001F18F1FE7B0>
plugin_name: logging-plugin
manager: <_pytest.config.PytestPluginManager object at 0x000001F18B046E40>
finish pytest_plugin_registered --> [] [hook]
finish pytest_configure --> [] [hook]
pytest_sessionstart [hook]
session: <Session exitstatus=<ExitCode.OK: 0> testsfailed=0 testscollected=0>
pytest_plugin_registered [hook]
plugin: <_pytest.config.PytestPluginManager object at 0x000001F18B046E40>
plugin_name: 2136931069504
manager: <_pytest.config.PytestPluginManager object at 0x000001F18B046E40>
finish pytest_plugin_registered --> [] [hook]
pytest_plugin_registered [hook]
plugin: <_pytest.config.Config object at 0x000001F18C24BB60>
plugin_name: pytestconfig
manager: <_pytest.config.PytestPluginManager object at 0x000001F18B046E40>
finish pytest_plugin_registered --> [] [hook]
pytest_plugin_registered [hook]
plugin: <module '_pytest.mark' from 'C:\\Users\\yasni\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\_pytest\\mark\\__init__.py'>
plugin_name: mark
manager: <_pytest.config.PytestPluginManager object at 0x000001F18B046E40>
finish pytest_plugin_registered --> [] [hook]
pytest_plugin_registered [hook]
plugin: <module '_pytest.main' from 'C:\\Users\\yasni\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\_pytest\\main.py'>
plugin_name: main
manager: <_pytest.config.PytestPluginManager object at 0x000001F18B046E40>
finish pytest_plugin_registered --> [] [hook]
pytest_plugin_registered [hook]
plugin: <module '_pytest.runner' from 'C:\\Users\\yasni\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\_pytest\\runner.py'>
plugin_name: runner
manager: <_pytest.config.PytestPluginManager object at 0x000001F18B046E40>
finish pytest_plugin_registered --> [] [hook]
pytest_plugin_registered [hook]
plugin: <module '_pytest.fixtures' from 'C:\\Users\\yasni\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\_pytest\\fixtures.py'>
plugin_name: fixtures
manager: <_pytest.config.PytestPluginManager object at 0x000001F18B046E40>
finish pytest_plugin_registered --> [] [hook]
pytest_plugin_registered [hook]
plugin: <module '_pytest.helpconfig' from 'C:\\Users\\yasni\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\_pytest\\helpconfig.py'>
plugin_name: helpconfig
manager: <_pytest.config.PytestPluginManager object at 0x000001F18B046E40>
finish pytest_plugin_registered --> [] [hook]
pytest_plugin_registered [hook]
plugin: <module '_pytest.python' from 'C:\\Users\\yasni\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\_pytest\\python.py'>
plugin_name: python
manager: <_pytest.config.PytestPluginManager object at 0x000001F18B046E40>
finish pytest_plugin_registered --> [] [hook]
pytest_plugin_registered [hook]
plugin: <module '_pytest.terminal' from 'C:\\Users\\yasni\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\_pytest\\terminal.py'>
plugin_name: terminal
manager: <_pytest.config.PytestPluginManager object at 0x000001F18B046E40>
finish pytest_plugin_registered --> [] [hook]
pytest_plugin_registered [hook]
plugin: <module '_pytest.debugging' from 'C:\\Users\\yasni\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\_pytest\\debugging.py'>
plugin_name: debugging
manager: <_pytest.config.PytestPluginManager object at 0x000001F18B046E40>
finish pytest_plugin_registered --> [] [hook]
pytest_plugin_registered [hook]
plugin: <module '_pytest.unittest' from 'C:\\Users\\yasni\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\_pytest\\unittest.py'>
plugin_name: unittest
manager: <_pytest.config.PytestPluginManager object at 0x000001F18B046E40>
finish pytest_plugin_registered --> [] [hook]
pytest_plugin_registered [hook]
plugin: <module '_pytest.capture' from 'C:\\Users\\yasni\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\_pytest\\capture.py'>
plugin_name: capture
manager: <_pytest.config.PytestPluginManager object at 0x000001F18B046E40>
finish pytest_plugin_registered --> [] [hook]
pytest_plugin_registered [hook]
plugin: <module '_pytest.skipping' from 'C:\\Users\\yasni\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\_pytest\\skipping.py'>
plugin_name: skipping
manager: <_pytest.config.PytestPluginManager object at 0x000001F18B046E40>
finish pytest_plugin_registered --> [] [hook]
pytest_plugin_registered [hook]
plugin: <module '_pytest.legacypath' from 'C:\\Users\\yasni\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\_pytest\\legacypath.py'>
plugin_name: legacypath
manager: <_pytest.config.PytestPluginManager object at 0x000001F18B046E40>
finish pytest_plugin_registered --> [] [hook]
pytest_plugin_registered [hook]
plugin: <module '_pytest.tmpdir' from 'C:\\Users\\yasni\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\_pytest\\tmpdir.py'>
plugin_name: tmpdir
manager: <_pytest.config.PytestPluginManager object at 0x000001F18B046E40>
finish pytest_plugin_registered --> [] [hook]
pytest_plugin_registered [hook]
plugin: <module '_pytest.monkeypatch' from 'C:\\Users\\yasni\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\_pytest\\monkeypatch.py'>
plugin_name: monkeypatch
manager: <_pytest.config.PytestPluginManager object at 0x000001F18B046E40>
finish pytest_plugin_registered --> [] [hook]
pytest_plugin_registered [hook]
plugin: <module '_pytest.recwarn' from 'C:\\Users\\yasni\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\_pytest\\recwarn.py'>
plugin_name: recwarn
manager: <_pytest.config.PytestPluginManager object at 0x000001F18B046E40>
finish pytest_plugin_registered --> [] [hook]
pytest_plugin_registered [hook]
plugin: <module '_pytest.pastebin' from 'C:\\Users\\yasni\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\_pytest\\pastebin.py'>
plugin_name: pastebin
manager: <_pytest.config.PytestPluginManager object at 0x000001F18B046E40>
finish pytest_plugin_registered --> [] [hook]
pytest_plugin_registered [hook]
plugin: <module '_pytest.assertion' from 'C:\\Users\\yasni\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\_pytest\\assertion\\__init__.py'>
plugin_name: assertion
manager: <_pytest.config.PytestPluginManager object at 0x000001F18B046E40>
finish pytest_plugin_registered --> [] [hook]
pytest_plugin_registered [hook]
plugin: <module '_pytest.junitxml' from 'C:\\Users\\yasni\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\_pytest\\junitxml.py'>
plugin_name: junitxml
manager: <_pytest.config.PytestPluginManager object at 0x000001F18B046E40>
finish pytest_plugin_registered --> [] [hook]
pytest_plugin_registered [hook]
plugin: <module '_pytest.doctest' from 'C:\\Users\\yasni\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\_pytest\\doctest.py'>
plugin_name: doctest
manager: <_pytest.config.PytestPluginManager object at 0x000001F18B046E40>
finish pytest_plugin_registered --> [] [hook]
pytest_plugin_registered [hook]
plugin: <module '_pytest.cacheprovider' from 'C:\\Users\\yasni\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\_pytest\\cacheprovider.py'>
plugin_name: cacheprovider
manager: <_pytest.config.PytestPluginManager object at 0x000001F18B046E40>
finish pytest_plugin_registered --> [] [hook]
pytest_plugin_registered [hook]
plugin: <module '_pytest.setuponly' from 'C:\\Users\\yasni\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\_pytest\\setuponly.py'>
plugin_name: setuponly
manager: <_pytest.config.PytestPluginManager object at 0x000001F18B046E40>
finish pytest_plugin_registered --> [] [hook]
pytest_plugin_registered [hook]
plugin: <module '_pytest.setupplan' from 'C:\\Users\\yasni\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\_pytest\\setupplan.py'>
plugin_name: setupplan
manager: <_pytest.config.PytestPluginManager object at 0x000001F18B046E40>
finish pytest_plugin_registered --> [] [hook]
pytest_plugin_registered [hook]
plugin: <module '_pytest.stepwise' from 'C:\\Users\\yasni\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\_pytest\\stepwise.py'>
plugin_name: stepwise
manager: <_pytest.config.PytestPluginManager object at 0x000001F18B046E40>
finish pytest_plugin_registered --> [] [hook]
pytest_plugin_registered [hook]
plugin: <module '_pytest.unraisableexception' from 'C:\\Users\\yasni\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\_pytest\\unraisableexception.py'>
plugin_name: unraisableexception
manager: <_pytest.config.PytestPluginManager object at 0x000001F18B046E40>
finish pytest_plugin_registered --> [] [hook]
pytest_plugin_registered [hook]
plugin: <module '_pytest.threadexception' from 'C:\\Users\\yasni\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\_pytest\\threadexception.py'>
plugin_name: threadexception
manager: <_pytest.config.PytestPluginManager object at 0x000001F18B046E40>
finish pytest_plugin_registered --> [] [hook]
pytest_plugin_registered [hook]
plugin: <module '_pytest.warnings' from 'C:\\Users\\yasni\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\_pytest\\warnings.py'>
plugin_name: warnings
manager: <_pytest.config.PytestPluginManager object at 0x000001F18B046E40>
finish pytest_plugin_registered --> [] [hook]
pytest_plugin_registered [hook]
plugin: <module '_pytest.logging' from 'C:\\Users\\yasni\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\_pytest\\logging.py'>
plugin_name: logging
manager: <_pytest.config.PytestPluginManager object at 0x000001F18B046E40>
finish pytest_plugin_registered --> [] [hook]
pytest_plugin_registered [hook]
plugin: <module '_pytest.reports' from 'C:\\Users\\yasni\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\_pytest\\reports.py'>
plugin_name: reports
manager: <_pytest.config.PytestPluginManager object at 0x000001F18B046E40>
finish pytest_plugin_registered --> [] [hook]
pytest_plugin_registered [hook]
plugin: <module '_pytest.faulthandler' from 'C:\\Users\\yasni\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\_pytest\\faulthandler.py'>
plugin_name: faulthandler
manager: <_pytest.config.PytestPluginManager object at 0x000001F18B046E40>
finish pytest_plugin_registered --> [] [hook]
pytest_plugin_registered [hook]
plugin: <module '_pytest.subtests' from 'C:\\Users\\yasni\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\_pytest\\subtests.py'>
plugin_name: subtests
manager: <_pytest.config.PytestPluginManager object at 0x000001F18B046E40>
finish pytest_plugin_registered --> [] [hook]
pytest_plugin_registered [hook]
plugin: <module 'allure_pytest.plugin' from 'C:\\Users\\yasni\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\allure_pytest\\plugin.py'>
plugin_name: allure_pytest
manager: <_pytest.config.PytestPluginManager object at 0x000001F18B046E40>
finish pytest_plugin_registered --> [] [hook]
pytest_plugin_registered [hook]
plugin: <module 'anyio.pytest_plugin' from 'C:\\Users\\yasni\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\anyio\\pytest_plugin.py'>
plugin_name: anyio
manager: <_pytest.config.PytestPluginManager object at 0x000001F18B046E40>
finish pytest_plugin_registered --> [] [hook]
pytest_plugin_registered [hook]
plugin: <module 'pytest_base_url.plugin' from 'C:\\Users\\yasni\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\pytest_base_url\\plugin.py'>
plugin_name: base_url
manager: <_pytest.config.PytestPluginManager object at 0x000001F18B046E40>
finish pytest_plugin_registered --> [] [hook]
pytest_plugin_registered [hook]
plugin: <module 'pytest_playwright.pytest_playwright' from 'C:\\Users\\yasni\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\pytest_playwright\\pytest_playwright.py'>
plugin_name: playwright
manager: <_pytest.config.PytestPluginManager object at 0x000001F18B046E40>
finish pytest_plugin_registered --> [] [hook]
pytest_plugin_registered [hook]
plugin: <module 'pytest_rerunfailures' from 'C:\\Users\\yasni\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\pytest_rerunfailures.py'>
plugin_name: rerunfailures
manager: <_pytest.config.PytestPluginManager object at 0x000001F18B046E40>
finish pytest_plugin_registered --> [] [hook]
pytest_plugin_registered [hook]
plugin: <module 'xdist.plugin' from 'C:\\Users\\yasni\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\xdist\\plugin.py'>
plugin_name: xdist
manager: <_pytest.config.PytestPluginManager object at 0x000001F18B046E40>
finish pytest_plugin_registered --> [] [hook]
pytest_plugin_registered [hook]
plugin: <module 'xdist.looponfail' from 'C:\\Users\\yasni\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\xdist\\looponfail.py'>
plugin_name: xdist.looponfail
manager: <_pytest.config.PytestPluginManager object at 0x000001F18B046E40>
finish pytest_plugin_registered --> [] [hook]
pytest_plugin_registered [hook]
plugin: <CaptureManager _method='fd' _global_capturing=<MultiCapture out=<FDCapture 1 oldfd=9 _state='suspended' tmpfile=<EncodedFile name='<tempfile._TemporaryFileWrapper object at 0x000001F18F1FCEC0>' mode='r+' encoding='utf-8'>> err=<FDCapture 2 oldfd=11 _state='suspended' tmpfile=<EncodedFile name='<tempfile._TemporaryFileWrapper object at 0x000001F18F230CD0>' mode='r+' encoding='utf-8'>> in_=<FDCapture 0 oldfd=7 _state='started' tmpfile=<_io.TextIOWrapper name='nul' mode='r' encoding='utf-8'>> _state='suspended' _in_suspended=False> _capture_fixture=None>
plugin_name: capturemanager
manager: <_pytest.config.PytestPluginManager object at 0x000001F18B046E40>
finish pytest_plugin_registered --> [] [hook]
pytest_plugin_registered [hook]
plugin: <module 'conftest' from 'C:\\Users\\yasni\\PythonMcp\\tests\\conftest.py'>
plugin_name: C:\Users\yasni\PythonMcp\tests\conftest.py
manager: <_pytest.config.PytestPluginManager object at 0x000001F18B046E40>
finish pytest_plugin_registered --> [] [hook]
pytest_plugin_registered [hook]
plugin: <Session exitstatus=<ExitCode.OK: 0> testsfailed=0 testscollected=0>
plugin_name: session
manager: <_pytest.config.PytestPluginManager object at 0x000001F18B046E40>
finish pytest_plugin_registered --> [] [hook]
pytest_plugin_registered [hook]
plugin: <_pytest.cacheprovider.LFPlugin object at 0x000001F18EDDFA10>
plugin_name: lfplugin
manager: <_pytest.config.PytestPluginManager object at 0x000001F18B046E40>
finish pytest_plugin_registered --> [] [hook]
pytest_plugin_registered [hook]
plugin: <_pytest.cacheprovider.NFPlugin object at 0x000001F18F1FD6A0>
plugin_name: nfplugin
manager: <_pytest.config.PytestPluginManager object at 0x000001F18B046E40>
finish pytest_plugin_registered --> [] [hook]
pytest_plugin_registered [hook]
plugin: <pytest_rerunfailures.XDistHooks object at 0x000001F18F1FD400>
plugin_name: 2136999973888
manager: <_pytest.config.PytestPluginManager object at 0x000001F18B046E40>
finish pytest_plugin_registered --> [] [hook]
pytest_plugin_registered [hook]
plugin: <class '_pytest.legacypath.LegacyTmpdirPlugin'>
plugin_name: legacypath-tmpdir
manager: <_pytest.config.PytestPluginManager object at 0x000001F18B046E40>
finish pytest_plugin_registered --> [] [hook]
pytest_plugin_registered [hook]
plugin: <_pytest.terminal.TerminalReporter object at 0x000001F18F1FDD30>
plugin_name: terminalreporter
manager: <_pytest.config.PytestPluginManager object at 0x000001F18B046E40>
finish pytest_plugin_registered --> [] [hook]
pytest_plugin_registered [hook]
plugin: <_pytest.terminal.TerminalProgressPlugin object at 0x000001F18F1FE510>
plugin_name: terminalprogress-plugin
manager: <_pytest.config.PytestPluginManager object at 0x000001F18B046E40>
finish pytest_plugin_registered --> [] [hook]
pytest_plugin_registered [hook]
plugin: <module '_pytest.terminalprogress' from 'C:\\Users\\yasni\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\_pytest\\terminalprogress.py'>
plugin_name: terminalprogress
manager: <_pytest.config.PytestPluginManager object at 0x000001F18B046E40>
finish pytest_plugin_registered --> [] [hook]
pytest_plugin_registered [hook]
plugin: <_pytest.logging.LoggingPlugin object at 0x000001F18F1FE7B0>
plugin_name: logging-plugin
manager: <_pytest.config.PytestPluginManager object at 0x000001F18B046E40>
finish pytest_plugin_registered --> [] [hook]
pytest_plugin_registered [hook]
plugin: <_pytest.fixtures.FixtureManager object at 0x000001F18F1FF0E0>
plugin_name: funcmanage
manager: <_pytest.config.PytestPluginManager object at 0x000001F18B046E40>
finish pytest_plugin_registered --> [] [hook]
pytest_report_header [hook]
config: <_pytest.config.Config object at 0x000001F18C24BB60>
start_path: C:\Users\yasni\PythonMcp
startdir: C:\Users\yasni\PythonMcp
early skip of rewriting module: importlib.metadata._adapters [assertion]
early skip of rewriting module: email.message [assertion]
early skip of rewriting module: quopri [assertion]
early skip of rewriting module: email.utils [assertion]
early skip of rewriting module: email._parseaddr [assertion]
early skip of rewriting module: email.errors [assertion]
early skip of rewriting module: email._policybase [assertion]
early skip of rewriting module: email.header [assertion]
early skip of rewriting module: email.quoprimime [assertion]
early skip of rewriting module: email.base64mime [assertion]
early skip of rewriting module: email.charset [assertion]
early skip of rewriting module: email.encoders [assertion]
early skip of rewriting module: email._encoded_words [assertion]
early skip of rewriting module: email.iterators [assertion]
early skip of rewriting module: importlib.metadata._text [assertion]
early skip of rewriting module: email.parser [assertion]
early skip of rewriting module: email.feedparser [assertion]
finish pytest_report_header --> [['rootdir: C:\\Users\\yasni\\PythonMcp', 'configfile: pytest.ini', 'plugins: allure-pytest-2.15.0, anyio-4.12.1, base-url-2.1.0, playwright-0.7.2, rerunfailures-16.1, xdist-3.8.0'], 'baseurl: https://www.mwtestconsultancy.co.uk/', 'cachedir: .pytest_cache', ['using: pytest-9.0.2', 'registered third-party plugins:', ' allure-pytest-2.15.0 at C:\\Users\\yasni\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\allure_pytest\\plugin.py', ' anyio-4.12.1 at C:\\Users\\yasni\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\anyio\\pytest_plugin.py', ' pytest-base-url-2.1.0 at C:\\Users\\yasni\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\pytest_base_url\\plugin.py', ' pytest-playwright-0.7.2 at C:\\Users\\yasni\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\pytest_playwright\\pytest_playwright.py', ' pytest-rerunfailures-16.1 at C:\\Users\\yasni\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\pytest_rerunfailures.py', ' pytest-xdist-3.8.0 at C:\\Users\\yasni\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\xdist\\plugin.py', ' pytest-xdist-3.8.0 at C:\\Users\\yasni\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\xdist\\looponfail.py']] [hook]
finish pytest_sessionstart --> [] [hook]
pytest_collection [hook]
session: <Session exitstatus=<ExitCode.OK: 0> testsfailed=0 testscollected=0>
perform_collect <Session exitstatus=<ExitCode.OK: 0> testsfailed=0 testscollected=0> ['tests/e2e_tests/test_navigation_about_section_e2e.py'] [collection]
pytest_collectstart [hook]
collector: <Session exitstatus=<ExitCode.OK: 0> testsfailed=0 testscollected=0>
finish pytest_collectstart --> [] [hook]
pytest_make_collect_report [hook]
collector: <Session exitstatus=<ExitCode.OK: 0> testsfailed=0 testscollected=0>
processing argument CollectionArgument(path=WindowsPath('C:/Users/yasni/PythonMcp/tests/e2e_tests/test_navigation_about_section_e2e.py'), parts=[], parametrization=None, module_name=None, original_index=0) [collection]
pytest_collect_directory [hook]
path: C:\Users\yasni\PythonMcp
parent: <Session exitstatus=<ExitCode.OK: 0> testsfailed=0 testscollected=0>
finish pytest_collect_directory --> <Dir PythonMcp> [hook]
pytest_collectstart [hook]
collector: <Dir PythonMcp>
finish pytest_collectstart --> [] [hook]
pytest_make_collect_report [hook]
collector: <Dir PythonMcp>
pytest_ignore_collect [hook]
config: <_pytest.config.Config object at 0x000001F18C24BB60>
collection_path: C:\Users\yasni\PythonMcp\.env
path: C:\Users\yasni\PythonMcp\.env
finish pytest_ignore_collect --> None [hook]
pytest_collect_file [hook]
parent: <Dir PythonMcp>
file_path: C:\Users\yasni\PythonMcp\.env
path: C:\Users\yasni\PythonMcp\.env
finish pytest_collect_file --> [] [hook]
pytest_ignore_collect [hook]
config: <_pytest.config.Config object at 0x000001F18C24BB60>
collection_path: C:\Users\yasni\PythonMcp\.github
path: C:\Users\yasni\PythonMcp\.github
finish pytest_ignore_collect --> True [hook]
pytest_ignore_collect [hook]
config: <_pytest.config.Config object at 0x000001F18C24BB60>
collection_path: C:\Users\yasni\PythonMcp\.gitignore
path: C:\Users\yasni\PythonMcp\.gitignore
finish pytest_ignore_collect --> None [hook]
pytest_collect_file [hook]
parent: <Dir PythonMcp>
file_path: C:\Users\yasni\PythonMcp\.gitignore
path: C:\Users\yasni\PythonMcp\.gitignore
finish pytest_collect_file --> [] [hook]
pytest_ignore_collect [hook]
config: <_pytest.config.Config object at 0x000001F18C24BB60>
collection_path: C:\Users\yasni\PythonMcp\.idea
path: C:\Users\yasni\PythonMcp\.idea
finish pytest_ignore_collect --> True [hook]
pytest_ignore_collect [hook]
config: <_pytest.config.Config object at 0x000001F18C24BB60>
collection_path: C:\Users\yasni\PythonMcp\.pytest_cache
path: C:\Users\yasni\PythonMcp\.pytest_cache
finish pytest_ignore_collect --> True [hook]
pytest_ignore_collect [hook]
config: <_pytest.config.Config object at 0x000001F18C24BB60>
collection_path: C:\Users\yasni\PythonMcp\.venv
path: C:\Users\yasni\PythonMcp\.venv
finish pytest_ignore_collect --> True [hook]
pytest_ignore_collect [hook]
config: <_pytest.config.Config object at 0x000001F18C24BB60>
collection_path: C:\Users\yasni\PythonMcp\.vscode
path: C:\Users\yasni\PythonMcp\.vscode
finish pytest_ignore_collect --> True [hook]
pytest_ignore_collect [hook]
config: <_pytest.config.Config object at 0x000001F18C24BB60>
collection_path: C:\Users\yasni\PythonMcp\click_error_Books.png
path: C:\Users\yasni\PythonMcp\click_error_Books.png
finish pytest_ignore_collect --> None [hook]
pytest_collect_file [hook]
parent: <Dir PythonMcp>
file_path: C:\Users\yasni\PythonMcp\click_error_Books.png
path: C:\Users\yasni\PythonMcp\click_error_Books.png
finish pytest_collect_file --> [] [hook]
pytest_ignore_collect [hook]
config: <_pytest.config.Config object at 0x000001F18C24BB60>
collection_path: C:\Users\yasni\PythonMcp\click_error_Tools.png
path: C:\Users\yasni\PythonMcp\click_error_Tools.png
finish pytest_ignore_collect --> None [hook]
pytest_collect_file [hook]
parent: <Dir PythonMcp>
file_path: C:\Users\yasni\PythonMcp\click_error_Tools.png
path: C:\Users\yasni\PythonMcp\click_error_Tools.png
finish pytest_collect_file --> [] [hook]
pytest_ignore_collect [hook]
config: <_pytest.config.Config object at 0x000001F18C24BB60>
collection_path: C:\Users\yasni\PythonMcp\debug_frame_Books.png
path: C:\Users\yasni\PythonMcp\debug_frame_Books.png
finish pytest_ignore_collect --> None [hook]
pytest_collect_file [hook]
parent: <Dir PythonMcp>
file_path: C:\Users\yasni\PythonMcp\debug_frame_Books.png
path: C:\Users\yasni\PythonMcp\debug_frame_Books.png
finish pytest_collect_file --> [] [hook]
pytest_ignore_collect [hook]
config: <_pytest.config.Config object at 0x000001F18C24BB60>
collection_path: C:\Users\yasni\PythonMcp\debug_frame_Tools.png
path: C:\Users\yasni\PythonMcp\debug_frame_Tools.png
finish pytest_ignore_collect --> None [hook]
pytest_collect_file [hook]
parent: <Dir PythonMcp>
file_path: C:\Users\yasni\PythonMcp\debug_frame_Tools.png
path: C:\Users\yasni\PythonMcp\debug_frame_Tools.png
finish pytest_collect_file --> [] [hook]
pytest_ignore_collect [hook]
config: <_pytest.config.Config object at 0x000001F18C24BB60>
collection_path: C:\Users\yasni\PythonMcp\error_report_attempt_3.png
path: C:\Users\yasni\PythonMcp\error_report_attempt_3.png
finish pytest_ignore_collect --> None [hook]
pytest_collect_file [hook]
parent: <Dir PythonMcp>
file_path: C:\Users\yasni\PythonMcp\error_report_attempt_3.png
path: C:\Users\yasni\PythonMcp\error_report_attempt_3.png
finish pytest_collect_file --> [] [hook]
pytest_ignore_collect [hook]
config: <_pytest.config.Config object at 0x000001F18C24BB60>
collection_path: C:\Users\yasni\PythonMcp\fail_search_Books.png
path: C:\Users\yasni\PythonMcp\fail_search_Books.png
finish pytest_ignore_collect --> None [hook]
pytest_collect_file [hook]
parent: <Dir PythonMcp>
file_path: C:\Users\yasni\PythonMcp\fail_search_Books.png
path: C:\Users\yasni\PythonMcp\fail_search_Books.png
finish pytest_collect_file --> [] [hook]
pytest_ignore_collect [hook]
config: <_pytest.config.Config object at 0x000001F18C24BB60>
collection_path: C:\Users\yasni\PythonMcp\fail_search_Tools.png
path: C:\Users\yasni\PythonMcp\fail_search_Tools.png
finish pytest_ignore_collect --> None [hook]
pytest_collect_file [hook]
parent: <Dir PythonMcp>
file_path: C:\Users\yasni\PythonMcp\fail_search_Tools.png
path: C:\Users\yasni\PythonMcp\fail_search_Tools.png
finish pytest_collect_file --> [] [hook]
pytest_ignore_collect [hook]
config: <_pytest.config.Config object at 0x000001F18C24BB60>
collection_path: C:\Users\yasni\PythonMcp\pages
path: C:\Users\yasni\PythonMcp\pages
finish pytest_ignore_collect --> None [hook]
pytest_collect_directory [hook]
path: C:\Users\yasni\PythonMcp\pages
parent: <Dir PythonMcp>
finish pytest_collect_directory --> <Package pages> [hook]
pytest_ignore_collect [hook]
config: <_pytest.config.Config object at 0x000001F18C24BB60>
collection_path: C:\Users\yasni\PythonMcp\pytest.ini
path: C:\Users\yasni\PythonMcp\pytest.ini
finish pytest_ignore_collect --> None [hook]
pytest_collect_file [hook]
parent: <Dir PythonMcp>
file_path: C:\Users\yasni\PythonMcp\pytest.ini
path: C:\Users\yasni\PythonMcp\pytest.ini
finish pytest_collect_file --> [] [hook]
pytest_ignore_collect [hook]
config: <_pytest.config.Config object at 0x000001F18C24BB60>
collection_path: C:\Users\yasni\PythonMcp\pytestdebug.log
path: C:\Users\yasni\PythonMcp\pytestdebug.log
finish pytest_ignore_collect --> None [hook]
pytest_collect_file [hook]
parent: <Dir PythonMcp>
file_path: C:\Users\yasni\PythonMcp\pytestdebug.log
path: C:\Users\yasni\PythonMcp\pytestdebug.log
finish pytest_collect_file --> [] [hook]
pytest_ignore_collect [hook]
config: <_pytest.config.Config object at 0x000001F18C24BB60>
collection_path: C:\Users\yasni\PythonMcp\requirements.txt
path: C:\Users\yasni\PythonMcp\requirements.txt
finish pytest_ignore_collect --> None [hook]
pytest_collect_file [hook]
parent: <Dir PythonMcp>
file_path: C:\Users\yasni\PythonMcp\requirements.txt
path: C:\Users\yasni\PythonMcp\requirements.txt
finish pytest_collect_file --> [] [hook]
pytest_ignore_collect [hook]
config: <_pytest.config.Config object at 0x000001F18C24BB60>
collection_path: C:\Users\yasni\PythonMcp\screenshots
path: C:\Users\yasni\PythonMcp\screenshots
finish pytest_ignore_collect --> None [hook]
pytest_collect_directory [hook]
path: C:\Users\yasni\PythonMcp\screenshots
parent: <Dir PythonMcp>
finish pytest_collect_directory --> <Dir screenshots> [hook]
pytest_ignore_collect [hook]
config: <_pytest.config.Config object at 0x000001F18C24BB60>
collection_path: C:\Users\yasni\PythonMcp\search_error_Books.png
path: C:\Users\yasni\PythonMcp\search_error_Books.png
finish pytest_ignore_collect --> None [hook]
pytest_collect_file [hook]
parent: <Dir PythonMcp>
file_path: C:\Users\yasni\PythonMcp\search_error_Books.png
path: C:\Users\yasni\PythonMcp\search_error_Books.png
finish pytest_collect_file --> [] [hook]
pytest_ignore_collect [hook]
config: <_pytest.config.Config object at 0x000001F18C24BB60>
collection_path: C:\Users\yasni\PythonMcp\search_error_Tools.png
path: C:\Users\yasni\PythonMcp\search_error_Tools.png
finish pytest_ignore_collect --> None [hook]
pytest_collect_file [hook]
parent: <Dir PythonMcp>
file_path: C:\Users\yasni\PythonMcp\search_error_Tools.png
path: C:\Users\yasni\PythonMcp\search_error_Tools.png
finish pytest_collect_file --> [] [hook]
pytest_ignore_collect [hook]
config: <_pytest.config.Config object at 0x000001F18C24BB60>
collection_path: C:\Users\yasni\PythonMcp\search_final_success.png
path: C:\Users\yasni\PythonMcp\search_final_success.png
finish pytest_ignore_collect --> None [hook]
pytest_collect_file [hook]
parent: <Dir PythonMcp>
file_path: C:\Users\yasni\PythonMcp\search_final_success.png
path: C:\Users\yasni\PythonMcp\search_final_success.png
finish pytest_collect_file --> [] [hook]
pytest_ignore_collect [hook]
config: <_pytest.config.Config object at 0x000001F18C24BB60>
collection_path: C:\Users\yasni\PythonMcp\search_success.png
path: C:\Users\yasni\PythonMcp\search_success.png
finish pytest_ignore_collect --> None [hook]
pytest_collect_file [hook]
parent: <Dir PythonMcp>
file_path: C:\Users\yasni\PythonMcp\search_success.png
path: C:\Users\yasni\PythonMcp\search_success.png
finish pytest_collect_file --> [] [hook]
pytest_ignore_collect [hook]
config: <_pytest.config.Config object at 0x000001F18C24BB60>
collection_path: C:\Users\yasni\PythonMcp\test-results
path: C:\Users\yasni\PythonMcp\test-results
finish pytest_ignore_collect --> None [hook]
pytest_collect_directory [hook]
path: C:\Users\yasni\PythonMcp\test-results
parent: <Dir PythonMcp>
finish pytest_collect_directory --> <Dir test-results> [hook]
pytest_collect_directory [hook]
path: C:\Users\yasni\PythonMcp\tests
parent: <Dir PythonMcp>
finish pytest_collect_directory --> <Dir tests> [hook]
finish pytest_make_collect_report --> <CollectReport '.' lenresult=4 outcome='passed'> [hook]
pytest_collectstart [hook]
collector: <Dir tests>
finish pytest_collectstart --> [] [hook]
pytest_make_collect_report [hook]
collector: <Dir tests>
pytest_ignore_collect [hook]
config: <_pytest.config.Config object at 0x000001F18C24BB60>
collection_path: C:\Users\yasni\PythonMcp\tests\UI_tests
path: C:\Users\yasni\PythonMcp\tests\UI_tests
finish pytest_ignore_collect --> None [hook]
pytest_collect_directory [hook]
path: C:\Users\yasni\PythonMcp\tests\UI_tests
parent: <Dir tests>
finish pytest_collect_directory --> <Dir UI_tests> [hook]
pytest_ignore_collect [hook]
config: <_pytest.config.Config object at 0x000001F18C24BB60>
collection_path: C:\Users\yasni\PythonMcp\tests\__pycache__
path: C:\Users\yasni\PythonMcp\tests\__pycache__
finish pytest_ignore_collect --> True [hook]
pytest_ignore_collect [hook]
config: <_pytest.config.Config object at 0x000001F18C24BB60>
collection_path: C:\Users\yasni\PythonMcp\tests\conftest.py
path: C:\Users\yasni\PythonMcp\tests\conftest.py
finish pytest_ignore_collect --> None [hook]
pytest_collect_file [hook]
parent: <Dir tests>
file_path: C:\Users\yasni\PythonMcp\tests\conftest.py
path: C:\Users\yasni\PythonMcp\tests\conftest.py
finish pytest_collect_file --> [] [hook]
pytest_ignore_collect [hook]
config: <_pytest.config.Config object at 0x000001F18C24BB60>
collection_path: C:\Users\yasni\PythonMcp\tests\debug_output.txt
path: C:\Users\yasni\PythonMcp\tests\debug_output.txt
finish pytest_ignore_collect --> None [hook]
pytest_collect_file [hook]
parent: <Dir tests>
file_path: C:\Users\yasni\PythonMcp\tests\debug_output.txt
path: C:\Users\yasni\PythonMcp\tests\debug_output.txt
finish pytest_collect_file --> [] [hook]
pytest_collect_directory [hook]
path: C:\Users\yasni\PythonMcp\tests\e2e_tests
parent: <Dir tests>
finish pytest_collect_directory --> <Dir e2e_tests> [hook]
pytest_ignore_collect [hook]
config: <_pytest.config.Config object at 0x000001F18C24BB60>
collection_path: C:\Users\yasni\PythonMcp\tests\page_content.html
path: C:\Users\yasni\PythonMcp\tests\page_content.html
finish pytest_ignore_collect --> None [hook]
pytest_collect_file [hook]
parent: <Dir tests>
file_path: C:\Users\yasni\PythonMcp\tests\page_content.html
path: C:\Users\yasni\PythonMcp\tests\page_content.html
finish pytest_collect_file --> [] [hook]
pytest_ignore_collect [hook]
config: <_pytest.config.Config object at 0x000001F18C24BB60>
collection_path: C:\Users\yasni\PythonMcp\tests\parametrized_tests
path: C:\Users\yasni\PythonMcp\tests\parametrized_tests
finish pytest_ignore_collect --> None [hook]
pytest_collect_directory [hook]
path: C:\Users\yasni\PythonMcp\tests\parametrized_tests
parent: <Dir tests>
finish pytest_collect_directory --> <Package parametrized_tests> [hook]
pytest_ignore_collect [hook]
config: <_pytest.config.Config object at 0x000001F18C24BB60>
collection_path: C:\Users\yasni\PythonMcp\tests\venv
path: C:\Users\yasni\PythonMcp\tests\venv
finish pytest_ignore_collect --> True [hook]
finish pytest_make_collect_report --> <CollectReport 'tests' lenresult=3 outcome='passed'> [hook]
pytest_collectstart [hook]
collector: <Dir e2e_tests>
finish pytest_collectstart --> [] [hook]
pytest_make_collect_report [hook]
collector: <Dir e2e_tests>
pytest_ignore_collect [hook]
config: <_pytest.config.Config object at 0x000001F18C24BB60>
collection_path: C:\Users\yasni\PythonMcp\tests\e2e_tests\__pycache__
path: C:\Users\yasni\PythonMcp\tests\e2e_tests\__pycache__
finish pytest_ignore_collect --> True [hook]
pytest_ignore_collect [hook]
config: <_pytest.config.Config object at 0x000001F18C24BB60>
collection_path: C:\Users\yasni\PythonMcp\tests\e2e_tests\test_about_flow.py
path: C:\Users\yasni\PythonMcp\tests\e2e_tests\test_about_flow.py
finish pytest_ignore_collect --> None [hook]
pytest_collect_file [hook]
parent: <Dir e2e_tests>
file_path: C:\Users\yasni\PythonMcp\tests\e2e_tests\test_about_flow.py
path: C:\Users\yasni\PythonMcp\tests\e2e_tests\test_about_flow.py
pytest_pycollect_makemodule [hook]
parent: <Dir e2e_tests>
module_path: C:\Users\yasni\PythonMcp\tests\e2e_tests\test_about_flow.py
path: C:\Users\yasni\PythonMcp\tests\e2e_tests\test_about_flow.py
finish pytest_pycollect_makemodule --> <Module test_about_flow.py> [hook]
finish pytest_collect_file --> [<Module test_about_flow.py>] [hook]
pytest_ignore_collect [hook]
config: <_pytest.config.Config object at 0x000001F18C24BB60>
collection_path: C:\Users\yasni\PythonMcp\tests\e2e_tests\test_e2e_flow.py
path: C:\Users\yasni\PythonMcp\tests\e2e_tests\test_e2e_flow.py
finish pytest_ignore_collect --> None [hook]
pytest_collect_file [hook]
parent: <Dir e2e_tests>
file_path: C:\Users\yasni\PythonMcp\tests\e2e_tests\test_e2e_flow.py
path: C:\Users\yasni\PythonMcp\tests\e2e_tests\test_e2e_flow.py
pytest_pycollect_makemodule [hook]
parent: <Dir e2e_tests>
module_path: C:\Users\yasni\PythonMcp\tests\e2e_tests\test_e2e_flow.py
path: C:\Users\yasni\PythonMcp\tests\e2e_tests\test_e2e_flow.py
finish pytest_pycollect_makemodule --> <Module test_e2e_flow.py> [hook]
finish pytest_collect_file --> [<Module test_e2e_flow.py>] [hook]
pytest_ignore_collect [hook]
config: <_pytest.config.Config object at 0x000001F18C24BB60>
collection_path: C:\Users\yasni\PythonMcp\tests\e2e_tests\test_homepage_displays_book_cards.py
path: C:\Users\yasni\PythonMcp\tests\e2e_tests\test_homepage_displays_book_cards.py
finish pytest_ignore_collect --> None [hook]
pytest_collect_file [hook]
parent: <Dir e2e_tests>
file_path: C:\Users\yasni\PythonMcp\tests\e2e_tests\test_homepage_displays_book_cards.py
path: C:\Users\yasni\PythonMcp\tests\e2e_tests\test_homepage_displays_book_cards.py
pytest_pycollect_makemodule [hook]
parent: <Dir e2e_tests>
module_path: C:\Users\yasni\PythonMcp\tests\e2e_tests\test_homepage_displays_book_cards.py
path: C:\Users\yasni\PythonMcp\tests\e2e_tests\test_homepage_displays_book_cards.py
finish pytest_pycollect_makemodule --> <Module test_homepage_displays_book_cards.py> [hook]
finish pytest_collect_file --> [<Module test_homepage_displays_book_cards.py>] [hook]
pytest_ignore_collect [hook]
config: <_pytest.config.Config object at 0x000001F18C24BB60>
collection_path: C:\Users\yasni\PythonMcp\tests\e2e_tests\test_indepdendent_flow.py
path: C:\Users\yasni\PythonMcp\tests\e2e_tests\test_indepdendent_flow.py
finish pytest_ignore_collect --> None [hook]
pytest_collect_file [hook]
parent: <Dir e2e_tests>
file_path: C:\Users\yasni\PythonMcp\tests\e2e_tests\test_indepdendent_flow.py
path: C:\Users\yasni\PythonMcp\tests\e2e_tests\test_indepdendent_flow.py
pytest_pycollect_makemodule [hook]
parent: <Dir e2e_tests>
module_path: C:\Users\yasni\PythonMcp\tests\e2e_tests\test_indepdendent_flow.py
path: C:\Users\yasni\PythonMcp\tests\e2e_tests\test_indepdendent_flow.py
finish pytest_pycollect_makemodule --> <Module test_indepdendent_flow.py> [hook]
finish pytest_collect_file --> [<Module test_indepdendent_flow.py>] [hook]
pytest_collect_file [hook]
parent: <Dir e2e_tests>
file_path: C:\Users\yasni\PythonMcp\tests\e2e_tests\test_navigation_about_section_e2e.py
path: C:\Users\yasni\PythonMcp\tests\e2e_tests\test_navigation_about_section_e2e.py
pytest_pycollect_makemodule [hook]
parent: <Dir e2e_tests>
module_path: C:\Users\yasni\PythonMcp\tests\e2e_tests\test_navigation_about_section_e2e.py
path: C:\Users\yasni\PythonMcp\tests\e2e_tests\test_navigation_about_section_e2e.py
finish pytest_pycollect_makemodule --> <Module test_navigation_about_section_e2e.py> [hook]
finish pytest_collect_file --> [<Module test_navigation_about_section_e2e.py>] [hook]
pytest_ignore_collect [hook]
config: <_pytest.config.Config object at 0x000001F18C24BB60>
collection_path: C:\Users\yasni\PythonMcp\tests\e2e_tests\test_open_article_and_verify_title_e2e.py
path: C:\Users\yasni\PythonMcp\tests\e2e_tests\test_open_article_and_verify_title_e2e.py
finish pytest_ignore_collect --> None [hook]
pytest_collect_file [hook]
parent: <Dir e2e_tests>
file_path: C:\Users\yasni\PythonMcp\tests\e2e_tests\test_open_article_and_verify_title_e2e.py
path: C:\Users\yasni\PythonMcp\tests\e2e_tests\test_open_article_and_verify_title_e2e.py
pytest_pycollect_makemodule [hook]
parent: <Dir e2e_tests>
module_path: C:\Users\yasni\PythonMcp\tests\e2e_tests\test_open_article_and_verify_title_e2e.py
path: C:\Users\yasni\PythonMcp\tests\e2e_tests\test_open_article_and_verify_title_e2e.py
finish pytest_pycollect_makemodule --> <Module test_open_article_and_verify_title_e2e.py> [hook]
finish pytest_collect_file --> [<Module test_open_article_and_verify_title_e2e.py>] [hook]
pytest_ignore_collect [hook]
config: <_pytest.config.Config object at 0x000001F18C24BB60>
collection_path: C:\Users\yasni\PythonMcp\tests\e2e_tests\test_search_e2e.py
path: C:\Users\yasni\PythonMcp\tests\e2e_tests\test_search_e2e.py
finish pytest_ignore_collect --> None [hook]
pytest_collect_file [hook]
parent: <Dir e2e_tests>
file_path: C:\Users\yasni\PythonMcp\tests\e2e_tests\test_search_e2e.py
path: C:\Users\yasni\PythonMcp\tests\e2e_tests\test_search_e2e.py
pytest_pycollect_makemodule [hook]
parent: <Dir e2e_tests>
module_path: C:\Users\yasni\PythonMcp\tests\e2e_tests\test_search_e2e.py
path: C:\Users\yasni\PythonMcp\tests\e2e_tests\test_search_e2e.py
finish pytest_pycollect_makemodule --> <Module test_search_e2e.py> [hook]
finish pytest_collect_file --> [<Module test_search_e2e.py>] [hook]
pytest_ignore_collect [hook]
config: <_pytest.config.Config object at 0x000001F18C24BB60>
collection_path: C:\Users\yasni\PythonMcp\tests\e2e_tests\test_search_via_iframe.py
path: C:\Users\yasni\PythonMcp\tests\e2e_tests\test_search_via_iframe.py
finish pytest_ignore_collect --> None [hook]
pytest_collect_file [hook]
parent: <Dir e2e_tests>
file_path: C:\Users\yasni\PythonMcp\tests\e2e_tests\test_search_via_iframe.py
path: C:\Users\yasni\PythonMcp\tests\e2e_tests\test_search_via_iframe.py
pytest_pycollect_makemodule [hook]
parent: <Dir e2e_tests>
module_path: C:\Users\yasni\PythonMcp\tests\e2e_tests\test_search_via_iframe.py
path: C:\Users\yasni\PythonMcp\tests\e2e_tests\test_search_via_iframe.py
finish pytest_pycollect_makemodule --> <Module test_search_via_iframe.py> [hook]
finish pytest_collect_file --> [<Module test_search_via_iframe.py>] [hook]