Skip to content
Snippets Groups Projects
pytestdebug.log 234 KiB
Newer Older
  • Learn to ignore specific revisions
  • 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-4.4.2, py-1.8.0, python-3.7.3.candidate.1
    cwd=/home/eliotberriot/projects/funkwhale/ansible/molecule/default
    args=['--connection=ansible', '--ansible-inventory=/tmp/molecule/ansible/default/inventory/ansible_inventory.yml', '-p', 'no:cacheprovider', '--debug', '/home/eliotberriot/projects/funkwhale/ansible/molecule/default/tests/test_default.py', '-vvv']
    
      pytest_cmdline_main [hook]
          config: <_pytest.config.Config object at 0x7f6c82c1f390>
        pytest_plugin_registered [hook]
            plugin: <Session default exitstatus='<UNSET>' testsfailed=0 testscollected=0>
            manager: <_pytest.config.PytestPluginManager object at 0x7f6c83891da0>
        finish pytest_plugin_registered --> [] [hook]
        pytest_configure [hook]
            config: <_pytest.config.Config object at 0x7f6c82c1f390>
        early skip of rewriting module: py._io [assertion]
        early skip of rewriting module: py._io.terminalwriter [assertion]
        early skip of rewriting module: unicodedata [assertion]
        early skip of rewriting module: py._builtin [assertion]
          pytest_plugin_registered [hook]
              plugin: <_pytest.config.PytestPluginManager object at 0x7f6c83891da0>
              manager: <_pytest.config.PytestPluginManager object at 0x7f6c83891da0>
          finish pytest_plugin_registered --> [] [hook]
          pytest_plugin_registered [hook]
              plugin: <_pytest.config.Config object at 0x7f6c82c1f390>
              manager: <_pytest.config.PytestPluginManager object at 0x7f6c83891da0>
          finish pytest_plugin_registered --> [] [hook]
          pytest_plugin_registered [hook]
              plugin: <module '_pytest.mark' from '/home/eliotberriot/.virtualenvs/funkwhale-ansible/lib/python3.7/site-packages/_pytest/mark/__init__.py'>
              manager: <_pytest.config.PytestPluginManager object at 0x7f6c83891da0>
          finish pytest_plugin_registered --> [] [hook]
          pytest_plugin_registered [hook]
              plugin: <module '_pytest.main' from '/home/eliotberriot/.virtualenvs/funkwhale-ansible/lib/python3.7/site-packages/_pytest/main.py'>
              manager: <_pytest.config.PytestPluginManager object at 0x7f6c83891da0>
          finish pytest_plugin_registered --> [] [hook]
          pytest_plugin_registered [hook]
              plugin: <module '_pytest.terminal' from '/home/eliotberriot/.virtualenvs/funkwhale-ansible/lib/python3.7/site-packages/_pytest/terminal.py'>
              manager: <_pytest.config.PytestPluginManager object at 0x7f6c83891da0>
          finish pytest_plugin_registered --> [] [hook]
          pytest_plugin_registered [hook]
              plugin: <module '_pytest.runner' from '/home/eliotberriot/.virtualenvs/funkwhale-ansible/lib/python3.7/site-packages/_pytest/runner.py'>
              manager: <_pytest.config.PytestPluginManager object at 0x7f6c83891da0>
          finish pytest_plugin_registered --> [] [hook]
          pytest_plugin_registered [hook]
              plugin: <module '_pytest.python' from '/home/eliotberriot/.virtualenvs/funkwhale-ansible/lib/python3.7/site-packages/_pytest/python.py'>
              manager: <_pytest.config.PytestPluginManager object at 0x7f6c83891da0>
          finish pytest_plugin_registered --> [] [hook]
          pytest_plugin_registered [hook]
              plugin: <module '_pytest.fixtures' from '/home/eliotberriot/.virtualenvs/funkwhale-ansible/lib/python3.7/site-packages/_pytest/fixtures.py'>
              manager: <_pytest.config.PytestPluginManager object at 0x7f6c83891da0>
          finish pytest_plugin_registered --> [] [hook]
          pytest_plugin_registered [hook]
              plugin: <module '_pytest.debugging' from '/home/eliotberriot/.virtualenvs/funkwhale-ansible/lib/python3.7/site-packages/_pytest/debugging.py'>
              manager: <_pytest.config.PytestPluginManager object at 0x7f6c83891da0>
          finish pytest_plugin_registered --> [] [hook]
          pytest_plugin_registered [hook]
              plugin: <module '_pytest.unittest' from '/home/eliotberriot/.virtualenvs/funkwhale-ansible/lib/python3.7/site-packages/_pytest/unittest.py'>
              manager: <_pytest.config.PytestPluginManager object at 0x7f6c83891da0>
          finish pytest_plugin_registered --> [] [hook]
          pytest_plugin_registered [hook]
              plugin: <module '_pytest.capture' from '/home/eliotberriot/.virtualenvs/funkwhale-ansible/lib/python3.7/site-packages/_pytest/capture.py'>
              manager: <_pytest.config.PytestPluginManager object at 0x7f6c83891da0>
          finish pytest_plugin_registered --> [] [hook]
          pytest_plugin_registered [hook]
              plugin: <module '_pytest.skipping' from '/home/eliotberriot/.virtualenvs/funkwhale-ansible/lib/python3.7/site-packages/_pytest/skipping.py'>
              manager: <_pytest.config.PytestPluginManager object at 0x7f6c83891da0>
          finish pytest_plugin_registered --> [] [hook]
          pytest_plugin_registered [hook]
              plugin: <module '_pytest.tmpdir' from '/home/eliotberriot/.virtualenvs/funkwhale-ansible/lib/python3.7/site-packages/_pytest/tmpdir.py'>
              manager: <_pytest.config.PytestPluginManager object at 0x7f6c83891da0>
          finish pytest_plugin_registered --> [] [hook]
          pytest_plugin_registered [hook]
              plugin: <module '_pytest.monkeypatch' from '/home/eliotberriot/.virtualenvs/funkwhale-ansible/lib/python3.7/site-packages/_pytest/monkeypatch.py'>
              manager: <_pytest.config.PytestPluginManager object at 0x7f6c83891da0>
          finish pytest_plugin_registered --> [] [hook]
          pytest_plugin_registered [hook]
              plugin: <module '_pytest.recwarn' from '/home/eliotberriot/.virtualenvs/funkwhale-ansible/lib/python3.7/site-packages/_pytest/recwarn.py'>
              manager: <_pytest.config.PytestPluginManager object at 0x7f6c83891da0>
          finish pytest_plugin_registered --> [] [hook]
          pytest_plugin_registered [hook]
              plugin: <module '_pytest.pastebin' from '/home/eliotberriot/.virtualenvs/funkwhale-ansible/lib/python3.7/site-packages/_pytest/pastebin.py'>
              manager: <_pytest.config.PytestPluginManager object at 0x7f6c83891da0>
          finish pytest_plugin_registered --> [] [hook]
          pytest_plugin_registered [hook]
              plugin: <module '_pytest.helpconfig' from '/home/eliotberriot/.virtualenvs/funkwhale-ansible/lib/python3.7/site-packages/_pytest/helpconfig.py'>
              manager: <_pytest.config.PytestPluginManager object at 0x7f6c83891da0>
          finish pytest_plugin_registered --> [] [hook]
          pytest_plugin_registered [hook]
              plugin: <module '_pytest.nose' from '/home/eliotberriot/.virtualenvs/funkwhale-ansible/lib/python3.7/site-packages/_pytest/nose.py'>
              manager: <_pytest.config.PytestPluginManager object at 0x7f6c83891da0>
          finish pytest_plugin_registered --> [] [hook]
          pytest_plugin_registered [hook]
              plugin: <module '_pytest.assertion' from '/home/eliotberriot/.virtualenvs/funkwhale-ansible/lib/python3.7/site-packages/_pytest/assertion/__init__.py'>
              manager: <_pytest.config.PytestPluginManager object at 0x7f6c83891da0>
          finish pytest_plugin_registered --> [] [hook]
          pytest_plugin_registered [hook]
              plugin: <module '_pytest.junitxml' from '/home/eliotberriot/.virtualenvs/funkwhale-ansible/lib/python3.7/site-packages/_pytest/junitxml.py'>
              manager: <_pytest.config.PytestPluginManager object at 0x7f6c83891da0>
          finish pytest_plugin_registered --> [] [hook]
          pytest_plugin_registered [hook]
              plugin: <module '_pytest.resultlog' from '/home/eliotberriot/.virtualenvs/funkwhale-ansible/lib/python3.7/site-packages/_pytest/resultlog.py'>
              manager: <_pytest.config.PytestPluginManager object at 0x7f6c83891da0>
          finish pytest_plugin_registered --> [] [hook]
          pytest_plugin_registered [hook]
              plugin: <module '_pytest.doctest' from '/home/eliotberriot/.virtualenvs/funkwhale-ansible/lib/python3.7/site-packages/_pytest/doctest.py'>
              manager: <_pytest.config.PytestPluginManager object at 0x7f6c83891da0>
          finish pytest_plugin_registered --> [] [hook]
          pytest_plugin_registered [hook]
              plugin: <module '_pytest.freeze_support' from '/home/eliotberriot/.virtualenvs/funkwhale-ansible/lib/python3.7/site-packages/_pytest/freeze_support.py'>
              manager: <_pytest.config.PytestPluginManager object at 0x7f6c83891da0>
          finish pytest_plugin_registered --> [] [hook]
          pytest_plugin_registered [hook]
              plugin: <module '_pytest.setuponly' from '/home/eliotberriot/.virtualenvs/funkwhale-ansible/lib/python3.7/site-packages/_pytest/setuponly.py'>
              manager: <_pytest.config.PytestPluginManager object at 0x7f6c83891da0>
          finish pytest_plugin_registered --> [] [hook]
          pytest_plugin_registered [hook]
              plugin: <module '_pytest.setupplan' from '/home/eliotberriot/.virtualenvs/funkwhale-ansible/lib/python3.7/site-packages/_pytest/setupplan.py'>
              manager: <_pytest.config.PytestPluginManager object at 0x7f6c83891da0>
          finish pytest_plugin_registered --> [] [hook]
          pytest_plugin_registered [hook]
              plugin: <module '_pytest.warnings' from '/home/eliotberriot/.virtualenvs/funkwhale-ansible/lib/python3.7/site-packages/_pytest/warnings.py'>
              manager: <_pytest.config.PytestPluginManager object at 0x7f6c83891da0>
          finish pytest_plugin_registered --> [] [hook]
          pytest_plugin_registered [hook]
              plugin: <module '_pytest.logging' from '/home/eliotberriot/.virtualenvs/funkwhale-ansible/lib/python3.7/site-packages/_pytest/logging.py'>
              manager: <_pytest.config.PytestPluginManager object at 0x7f6c83891da0>
          finish pytest_plugin_registered --> [] [hook]
          pytest_plugin_registered [hook]
              plugin: <module '_pytest.reports' from '/home/eliotberriot/.virtualenvs/funkwhale-ansible/lib/python3.7/site-packages/_pytest/reports.py'>
              manager: <_pytest.config.PytestPluginManager object at 0x7f6c83891da0>
          finish pytest_plugin_registered --> [] [hook]
          pytest_plugin_registered [hook]
              plugin: <module 'testinfra.plugin' from '/home/eliotberriot/.virtualenvs/funkwhale-ansible/lib/python3.7/site-packages/testinfra/plugin.py'>
              manager: <_pytest.config.PytestPluginManager object at 0x7f6c83891da0>
          finish pytest_plugin_registered --> [] [hook]
          pytest_plugin_registered [hook]
              plugin: <CaptureManager _method='fd' _global_capturing=<MultiCapture out=<FDCapture 1 oldfd=5> err=<FDCapture 2 oldfd=6> in_=<FDCapture 0 oldfd=3>> _current_item=None>
              manager: <_pytest.config.PytestPluginManager object at 0x7f6c83891da0>
          finish pytest_plugin_registered --> [] [hook]
          pytest_plugin_registered [hook]
              plugin: <Session default exitstatus=0 testsfailed=0 testscollected=0>
              manager: <_pytest.config.PytestPluginManager object at 0x7f6c83891da0>
          finish pytest_plugin_registered --> [] [hook]
          pytest_plugin_registered [hook]
              plugin: <_pytest.terminal.TerminalReporter object at 0x7f6c827e3a58>
              manager: <_pytest.config.PytestPluginManager object at 0x7f6c83891da0>
          finish pytest_plugin_registered --> [] [hook]
          pytest_plugin_registered [hook]
              plugin: <_pytest.logging.LoggingPlugin object at 0x7f6c827ea7f0>
              manager: <_pytest.config.PytestPluginManager object at 0x7f6c83891da0>
          finish pytest_plugin_registered --> [] [hook]
        finish pytest_configure --> [] [hook]
        pytest_sessionstart [hook]
            session: <Session default exitstatus=0 testsfailed=0 testscollected=0>
          pytest_plugin_registered [hook]
              plugin: <_pytest.config.PytestPluginManager object at 0x7f6c83891da0>
              manager: <_pytest.config.PytestPluginManager object at 0x7f6c83891da0>
          finish pytest_plugin_registered --> [] [hook]
          pytest_plugin_registered [hook]
              plugin: <_pytest.config.Config object at 0x7f6c82c1f390>
              manager: <_pytest.config.PytestPluginManager object at 0x7f6c83891da0>
          finish pytest_plugin_registered --> [] [hook]
          pytest_plugin_registered [hook]
              plugin: <module '_pytest.mark' from '/home/eliotberriot/.virtualenvs/funkwhale-ansible/lib/python3.7/site-packages/_pytest/mark/__init__.py'>
              manager: <_pytest.config.PytestPluginManager object at 0x7f6c83891da0>
          finish pytest_plugin_registered --> [] [hook]
          pytest_plugin_registered [hook]
              plugin: <module '_pytest.main' from '/home/eliotberriot/.virtualenvs/funkwhale-ansible/lib/python3.7/site-packages/_pytest/main.py'>
              manager: <_pytest.config.PytestPluginManager object at 0x7f6c83891da0>
          finish pytest_plugin_registered --> [] [hook]
          pytest_plugin_registered [hook]
              plugin: <module '_pytest.terminal' from '/home/eliotberriot/.virtualenvs/funkwhale-ansible/lib/python3.7/site-packages/_pytest/terminal.py'>
              manager: <_pytest.config.PytestPluginManager object at 0x7f6c83891da0>
          finish pytest_plugin_registered --> [] [hook]
          pytest_plugin_registered [hook]
              plugin: <module '_pytest.runner' from '/home/eliotberriot/.virtualenvs/funkwhale-ansible/lib/python3.7/site-packages/_pytest/runner.py'>
              manager: <_pytest.config.PytestPluginManager object at 0x7f6c83891da0>
          finish pytest_plugin_registered --> [] [hook]
          pytest_plugin_registered [hook]
              plugin: <module '_pytest.python' from '/home/eliotberriot/.virtualenvs/funkwhale-ansible/lib/python3.7/site-packages/_pytest/python.py'>
              manager: <_pytest.config.PytestPluginManager object at 0x7f6c83891da0>
          finish pytest_plugin_registered --> [] [hook]
          pytest_plugin_registered [hook]
              plugin: <module '_pytest.fixtures' from '/home/eliotberriot/.virtualenvs/funkwhale-ansible/lib/python3.7/site-packages/_pytest/fixtures.py'>
              manager: <_pytest.config.PytestPluginManager object at 0x7f6c83891da0>
          finish pytest_plugin_registered --> [] [hook]
          pytest_plugin_registered [hook]
              plugin: <module '_pytest.debugging' from '/home/eliotberriot/.virtualenvs/funkwhale-ansible/lib/python3.7/site-packages/_pytest/debugging.py'>
              manager: <_pytest.config.PytestPluginManager object at 0x7f6c83891da0>
          finish pytest_plugin_registered --> [] [hook]
          pytest_plugin_registered [hook]
              plugin: <module '_pytest.unittest' from '/home/eliotberriot/.virtualenvs/funkwhale-ansible/lib/python3.7/site-packages/_pytest/unittest.py'>
              manager: <_pytest.config.PytestPluginManager object at 0x7f6c83891da0>
          finish pytest_plugin_registered --> [] [hook]
          pytest_plugin_registered [hook]
              plugin: <module '_pytest.capture' from '/home/eliotberriot/.virtualenvs/funkwhale-ansible/lib/python3.7/site-packages/_pytest/capture.py'>
              manager: <_pytest.config.PytestPluginManager object at 0x7f6c83891da0>
          finish pytest_plugin_registered --> [] [hook]
          pytest_plugin_registered [hook]
              plugin: <module '_pytest.skipping' from '/home/eliotberriot/.virtualenvs/funkwhale-ansible/lib/python3.7/site-packages/_pytest/skipping.py'>
              manager: <_pytest.config.PytestPluginManager object at 0x7f6c83891da0>
          finish pytest_plugin_registered --> [] [hook]
          pytest_plugin_registered [hook]
              plugin: <module '_pytest.tmpdir' from '/home/eliotberriot/.virtualenvs/funkwhale-ansible/lib/python3.7/site-packages/_pytest/tmpdir.py'>
              manager: <_pytest.config.PytestPluginManager object at 0x7f6c83891da0>
          finish pytest_plugin_registered --> [] [hook]
          pytest_plugin_registered [hook]
              plugin: <module '_pytest.monkeypatch' from '/home/eliotberriot/.virtualenvs/funkwhale-ansible/lib/python3.7/site-packages/_pytest/monkeypatch.py'>
              manager: <_pytest.config.PytestPluginManager object at 0x7f6c83891da0>
          finish pytest_plugin_registered --> [] [hook]
          pytest_plugin_registered [hook]
              plugin: <module '_pytest.recwarn' from '/home/eliotberriot/.virtualenvs/funkwhale-ansible/lib/python3.7/site-packages/_pytest/recwarn.py'>
              manager: <_pytest.config.PytestPluginManager object at 0x7f6c83891da0>
          finish pytest_plugin_registered --> [] [hook]
          pytest_plugin_registered [hook]
              plugin: <module '_pytest.pastebin' from '/home/eliotberriot/.virtualenvs/funkwhale-ansible/lib/python3.7/site-packages/_pytest/pastebin.py'>
              manager: <_pytest.config.PytestPluginManager object at 0x7f6c83891da0>
          finish pytest_plugin_registered --> [] [hook]
          pytest_plugin_registered [hook]
              plugin: <module '_pytest.helpconfig' from '/home/eliotberriot/.virtualenvs/funkwhale-ansible/lib/python3.7/site-packages/_pytest/helpconfig.py'>
              manager: <_pytest.config.PytestPluginManager object at 0x7f6c83891da0>
          finish pytest_plugin_registered --> [] [hook]
          pytest_plugin_registered [hook]
              plugin: <module '_pytest.nose' from '/home/eliotberriot/.virtualenvs/funkwhale-ansible/lib/python3.7/site-packages/_pytest/nose.py'>
              manager: <_pytest.config.PytestPluginManager object at 0x7f6c83891da0>
          finish pytest_plugin_registered --> [] [hook]
          pytest_plugin_registered [hook]
              plugin: <module '_pytest.assertion' from '/home/eliotberriot/.virtualenvs/funkwhale-ansible/lib/python3.7/site-packages/_pytest/assertion/__init__.py'>
              manager: <_pytest.config.PytestPluginManager object at 0x7f6c83891da0>
          finish pytest_plugin_registered --> [] [hook]
          pytest_plugin_registered [hook]
              plugin: <module '_pytest.junitxml' from '/home/eliotberriot/.virtualenvs/funkwhale-ansible/lib/python3.7/site-packages/_pytest/junitxml.py'>
              manager: <_pytest.config.PytestPluginManager object at 0x7f6c83891da0>
          finish pytest_plugin_registered --> [] [hook]
          pytest_plugin_registered [hook]
              plugin: <module '_pytest.resultlog' from '/home/eliotberriot/.virtualenvs/funkwhale-ansible/lib/python3.7/site-packages/_pytest/resultlog.py'>
              manager: <_pytest.config.PytestPluginManager object at 0x7f6c83891da0>
          finish pytest_plugin_registered --> [] [hook]
          pytest_plugin_registered [hook]
              plugin: <module '_pytest.doctest' from '/home/eliotberriot/.virtualenvs/funkwhale-ansible/lib/python3.7/site-packages/_pytest/doctest.py'>
              manager: <_pytest.config.PytestPluginManager object at 0x7f6c83891da0>
          finish pytest_plugin_registered --> [] [hook]
          pytest_plugin_registered [hook]
              plugin: <module '_pytest.freeze_support' from '/home/eliotberriot/.virtualenvs/funkwhale-ansible/lib/python3.7/site-packages/_pytest/freeze_support.py'>
              manager: <_pytest.config.PytestPluginManager object at 0x7f6c83891da0>
          finish pytest_plugin_registered --> [] [hook]
          pytest_plugin_registered [hook]
              plugin: <module '_pytest.setuponly' from '/home/eliotberriot/.virtualenvs/funkwhale-ansible/lib/python3.7/site-packages/_pytest/setuponly.py'>
              manager: <_pytest.config.PytestPluginManager object at 0x7f6c83891da0>
          finish pytest_plugin_registered --> [] [hook]
          pytest_plugin_registered [hook]
              plugin: <module '_pytest.setupplan' from '/home/eliotberriot/.virtualenvs/funkwhale-ansible/lib/python3.7/site-packages/_pytest/setupplan.py'>
              manager: <_pytest.config.PytestPluginManager object at 0x7f6c83891da0>
          finish pytest_plugin_registered --> [] [hook]
          pytest_plugin_registered [hook]
              plugin: <module '_pytest.warnings' from '/home/eliotberriot/.virtualenvs/funkwhale-ansible/lib/python3.7/site-packages/_pytest/warnings.py'>
              manager: <_pytest.config.PytestPluginManager object at 0x7f6c83891da0>
          finish pytest_plugin_registered --> [] [hook]
          pytest_plugin_registered [hook]
              plugin: <module '_pytest.logging' from '/home/eliotberriot/.virtualenvs/funkwhale-ansible/lib/python3.7/site-packages/_pytest/logging.py'>
              manager: <_pytest.config.PytestPluginManager object at 0x7f6c83891da0>
          finish pytest_plugin_registered --> [] [hook]
          pytest_plugin_registered [hook]
              plugin: <module '_pytest.reports' from '/home/eliotberriot/.virtualenvs/funkwhale-ansible/lib/python3.7/site-packages/_pytest/reports.py'>
              manager: <_pytest.config.PytestPluginManager object at 0x7f6c83891da0>
          finish pytest_plugin_registered --> [] [hook]
          pytest_plugin_registered [hook]
              plugin: <module 'testinfra.plugin' from '/home/eliotberriot/.virtualenvs/funkwhale-ansible/lib/python3.7/site-packages/testinfra/plugin.py'>
              manager: <_pytest.config.PytestPluginManager object at 0x7f6c83891da0>
          finish pytest_plugin_registered --> [] [hook]
          pytest_plugin_registered [hook]
              plugin: <CaptureManager _method='fd' _global_capturing=<MultiCapture out=<FDCapture 1 oldfd=5> err=<FDCapture 2 oldfd=6> in_=<FDCapture 0 oldfd=3>> _current_item=None>
              manager: <_pytest.config.PytestPluginManager object at 0x7f6c83891da0>
          finish pytest_plugin_registered --> [] [hook]
          pytest_plugin_registered [hook]
              plugin: <Session default exitstatus=0 testsfailed=0 testscollected=0>
              manager: <_pytest.config.PytestPluginManager object at 0x7f6c83891da0>
          finish pytest_plugin_registered --> [] [hook]
          pytest_plugin_registered [hook]
              plugin: <_pytest.terminal.TerminalReporter object at 0x7f6c827e3a58>
              manager: <_pytest.config.PytestPluginManager object at 0x7f6c83891da0>
          finish pytest_plugin_registered --> [] [hook]
          pytest_plugin_registered [hook]
              plugin: <_pytest.logging.LoggingPlugin object at 0x7f6c827ea7f0>
              manager: <_pytest.config.PytestPluginManager object at 0x7f6c83891da0>
          finish pytest_plugin_registered --> [] [hook]
          pytest_plugin_registered [hook]
              plugin: <_pytest.fixtures.FixtureManager object at 0x7f6c827ea978>
              manager: <_pytest.config.PytestPluginManager object at 0x7f6c83891da0>
          finish pytest_plugin_registered --> [] [hook]
          pytest_report_header [hook]
              config: <_pytest.config.Config object at 0x7f6c82c1f390>
              startdir: /home/eliotberriot/projects/funkwhale/ansible/molecule/default
          finish pytest_report_header --> [['rootdir: /home/eliotberriot/projects/funkwhale/ansible/molecule/default', 'plugins: testinfra-1.19.0'], ['using: pytest-4.4.2 pylib-1.8.0', 'setuptools registered plugins:', '  testinfra-1.19.0 at /home/eliotberriot/.virtualenvs/funkwhale-ansible/lib/python3.7/site-packages/testinfra/plugin.py']] [hook]
        finish pytest_sessionstart --> [] [hook]
        pytest_collection [hook]
            session: <Session default exitstatus=0 testsfailed=0 testscollected=0>
        perform_collect <Session default exitstatus=0 testsfailed=0 testscollected=0> ['/home/eliotberriot/projects/funkwhale/ansible/molecule/default/tests/test_default.py'] [collection]
            pytest_collectstart [hook]
                collector: <Session default exitstatus=0 testsfailed=0 testscollected=0>
            finish pytest_collectstart --> [] [hook]
            pytest_make_collect_report [hook]
                collector: <Session default exitstatus=0 testsfailed=0 testscollected=0>
            processing argument /home/eliotberriot/projects/funkwhale/ansible/molecule/default/tests/test_default.py [collection]
                pytest_collect_file [hook]
                    path: /home/eliotberriot/projects/funkwhale/ansible/molecule/default/tests/test_default.py
                    parent: <Session default exitstatus=0 testsfailed=0 testscollected=0>
                  pytest_pycollect_makemodule [hook]
                      path: /home/eliotberriot/projects/funkwhale/ansible/molecule/default/tests/test_default.py
                      parent: <Session default exitstatus=0 testsfailed=0 testscollected=0>
                  finish pytest_pycollect_makemodule --> <Module tests/test_default.py> [hook]
                finish pytest_collect_file --> [<Module tests/test_default.py>] [hook]
              matchnodes [<Module tests/test_default.py>] [] [collection]
                matchnodes finished ->  1 nodes [collection]
            finish pytest_make_collect_report --> <CollectReport '' lenresult=1 outcome='passed'> [hook]
            pytest_collectreport [hook]
                report: <CollectReport '' lenresult=1 outcome='passed'>
            finish pytest_collectreport --> [] [hook]
        genitems <Module tests/test_default.py> [collection]
          pytest_collectstart [hook]
              collector: <Module tests/test_default.py>
          finish pytest_collectstart --> [] [hook]
          pytest_make_collect_report [hook]
              collector: <Module tests/test_default.py>
          find_module called for: test_default [assertion]
          matched test file (was specified on cmdline): '/home/eliotberriot/projects/funkwhale/ansible/molecule/default/tests/test_default.py' [assertion]
          _read_pyc(/home/eliotberriot/projects/funkwhale/ansible/molecule/default/tests/test_default.py): invalid or out of date pyc [assertion]
          rewriting '/home/eliotberriot/projects/funkwhale/ansible/molecule/default/tests/test_default.py' [assertion]
          matched marked file 'testinfra.utils.ansible_runner' (from 'testinfra') [assertion]
          find_module called for: testinfra.utils.ansible_runner [assertion]
          found cached rewritten pyc for '/home/eliotberriot/.virtualenvs/funkwhale-ansible/lib/python3.7/site-packages/testinfra/utils/ansible_runner.py' [assertion]
          early skip of rewriting module: ansible [assertion]
          early skip of rewriting module: ansible.release [assertion]
          early skip of rewriting module: ansible.constants [assertion]
          early skip of rewriting module: jinja2 [assertion]
          early skip of rewriting module: jinja2.environment [assertion]
          early skip of rewriting module: jinja2.nodes [assertion]
          early skip of rewriting module: jinja2.utils [assertion]
          early skip of rewriting module: json [assertion]
          early skip of rewriting module: json.decoder [assertion]
          early skip of rewriting module: json.scanner [assertion]
          early skip of rewriting module: _json [assertion]
          early skip of rewriting module: json.encoder [assertion]
          early skip of rewriting module: jinja2._compat [assertion]
          early skip of rewriting module: pickle [assertion]
          early skip of rewriting module: _compat_pickle [assertion]
          early skip of rewriting module: org [assertion]
          early skip of rewriting module: _pickle [assertion]
          early skip of rewriting module: markupsafe [assertion]
          early skip of rewriting module: markupsafe._compat [assertion]
          early skip of rewriting module: markupsafe._speedups [assertion]
          early skip of rewriting module: jinja2.defaults [assertion]
          early skip of rewriting module: jinja2.filters [assertion]
          early skip of rewriting module: jinja2.runtime [assertion]
          early skip of rewriting module: jinja2.exceptions [assertion]
          early skip of rewriting module: jinja2.tests [assertion]
          early skip of rewriting module: jinja2.lexer [assertion]
          early skip of rewriting module: jinja2._identifier [assertion]
          early skip of rewriting module: jinja2.parser [assertion]
          early skip of rewriting module: jinja2.compiler [assertion]
          early skip of rewriting module: jinja2.visitor [assertion]
          early skip of rewriting module: jinja2.optimizer [assertion]
          early skip of rewriting module: jinja2.idtracking [assertion]
          early skip of rewriting module: jinja2.loaders [assertion]
          early skip of rewriting module: jinja2.bccache [assertion]
          early skip of rewriting module: jinja2.asyncsupport [assertion]
          early skip of rewriting module: asyncio [assertion]
          early skip of rewriting module: asyncio.base_events [assertion]
          early skip of rewriting module: concurrent [assertion]
          early skip of rewriting module: concurrent.futures [assertion]
          early skip of rewriting module: concurrent.futures._base [assertion]
          early skip of rewriting module: ssl [assertion]
          early skip of rewriting module: _ssl [assertion]
          early skip of rewriting module: asyncio.constants [assertion]
          early skip of rewriting module: asyncio.coroutines [assertion]
          early skip of rewriting module: asyncio.base_futures [assertion]
          early skip of rewriting module: asyncio.format_helpers [assertion]
          early skip of rewriting module: asyncio.log [assertion]
          early skip of rewriting module: asyncio.events [assertion]
          early skip of rewriting module: contextvars [assertion]
          early skip of rewriting module: _contextvars [assertion]
          early skip of rewriting module: _asyncio [assertion]
          early skip of rewriting module: asyncio.base_tasks [assertion]
          early skip of rewriting module: asyncio.futures [assertion]
          early skip of rewriting module: asyncio.protocols [assertion]
          early skip of rewriting module: asyncio.sslproto [assertion]
          early skip of rewriting module: asyncio.transports [assertion]
          early skip of rewriting module: asyncio.tasks [assertion]
          early skip of rewriting module: asyncio.locks [assertion]
          early skip of rewriting module: asyncio.runners [assertion]
          early skip of rewriting module: asyncio.queues [assertion]
          early skip of rewriting module: asyncio.streams [assertion]
          early skip of rewriting module: asyncio.subprocess [assertion]
          early skip of rewriting module: asyncio.unix_events [assertion]
          early skip of rewriting module: asyncio.base_subprocess [assertion]
          early skip of rewriting module: asyncio.selector_events [assertion]
          early skip of rewriting module: jinja2.asyncfilters [assertion]
          early skip of rewriting module: ansible.module_utils [assertion]
          early skip of rewriting module: ansible.module_utils._text [assertion]
          early skip of rewriting module: ansible.module_utils.six [assertion]
          early skip of rewriting module: ansible.module_utils.parsing [assertion]
          early skip of rewriting module: ansible.module_utils.parsing.convert_bool [assertion]
          early skip of rewriting module: ansible.config [assertion]
          early skip of rewriting module: ansible.config.manager [assertion]
          early skip of rewriting module: yaml [assertion]
          early skip of rewriting module: yaml.error [assertion]
          early skip of rewriting module: yaml.tokens [assertion]
          early skip of rewriting module: yaml.events [assertion]
          early skip of rewriting module: yaml.nodes [assertion]
          early skip of rewriting module: yaml.loader [assertion]
          early skip of rewriting module: yaml.reader [assertion]
          early skip of rewriting module: yaml.scanner [assertion]
          early skip of rewriting module: yaml.parser [assertion]
          early skip of rewriting module: yaml.composer [assertion]
          early skip of rewriting module: yaml.constructor [assertion]
          early skip of rewriting module: yaml.resolver [assertion]
          early skip of rewriting module: yaml.dumper [assertion]
          early skip of rewriting module: yaml.emitter [assertion]
          early skip of rewriting module: yaml.serializer [assertion]
          early skip of rewriting module: yaml.representer [assertion]
          early skip of rewriting module: yaml.cyaml [assertion]
          early skip of rewriting module: _yaml [assertion]
          early skip of rewriting module: yaml.CSafeLoader [assertion]
          early skip of rewriting module: ansible.config.data [assertion]
          early skip of rewriting module: ansible.errors [assertion]
          early skip of rewriting module: ansible.errors.yaml_strings [assertion]
          early skip of rewriting module: ansible.module_utils.six.moves [assertion]
          early skip of rewriting module: configparser [assertion]
          early skip of rewriting module: ansible.parsing [assertion]
          early skip of rewriting module: ansible.parsing.quoting [assertion]
          early skip of rewriting module: ansible.utils [assertion]
          early skip of rewriting module: ansible.utils.py3compat [assertion]
          early skip of rewriting module: ansible.utils.path [assertion]
          early skip of rewriting module: encodings.unicode_escape [assertion]
          early skip of rewriting module: ansible.cli [assertion]
          early skip of rewriting module: getpass [assertion]
          early skip of rewriting module: termios [assertion]
          early skip of rewriting module: optparse [assertion]
          early skip of rewriting module: ansible.inventory [assertion]
          early skip of rewriting module: ansible.inventory.manager [assertion]
          early skip of rewriting module: ansible.inventory.data [assertion]
          early skip of rewriting module: ansible.inventory.group [assertion]
          early skip of rewriting module: ansible.inventory.host [assertion]
          early skip of rewriting module: ansible.utils.vars [assertion]
          early skip of rewriting module: ansible.parsing.splitter [assertion]
          early skip of rewriting module: ansible.utils.display [assertion]
          early skip of rewriting module: ansible.utils.color [assertion]
          early skip of rewriting module: ansible.parsing.utils [assertion]
          early skip of rewriting module: ansible.parsing.utils.addresses [assertion]
          early skip of rewriting module: ansible.plugins [assertion]
          early skip of rewriting module: ansible.plugins.loader [assertion]
          early skip of rewriting module: ansible.parsing.utils.yaml [assertion]
          early skip of rewriting module: ansible.parsing.yaml [assertion]
          early skip of rewriting module: ansible.parsing.yaml.loader [assertion]
          early skip of rewriting module: _yaml [assertion]
          early skip of rewriting module: ansible.parsing.yaml.constructor [assertion]
          early skip of rewriting module: ansible.parsing.yaml.objects [assertion]
          early skip of rewriting module: ansible.utils.unsafe_proxy [assertion]
          early skip of rewriting module: ansible.parsing.vault [assertion]
          early skip of rewriting module: cryptography [assertion]
          early skip of rewriting module: cryptography.__about__ [assertion]
          early skip of rewriting module: cryptography.exceptions [assertion]
          early skip of rewriting module: cryptography.hazmat [assertion]
          early skip of rewriting module: cryptography.hazmat.backends [assertion]
          early skip of rewriting module: cryptography.hazmat.primitives [assertion]
          early skip of rewriting module: cryptography.hazmat.primitives.hashes [assertion]
          early skip of rewriting module: cryptography.utils [assertion]
          early skip of rewriting module: cryptography.hazmat.backends.interfaces [assertion]
          early skip of rewriting module: cryptography.hazmat.primitives.padding [assertion]
          early skip of rewriting module: cryptography.hazmat.bindings [assertion]
          early skip of rewriting module: cryptography.hazmat.bindings._padding [assertion]
          early skip of rewriting module: _cffi_backend [assertion]
          early skip of rewriting module: cryptography.hazmat.primitives.hmac [assertion]
          early skip of rewriting module: cryptography.hazmat.primitives.mac [assertion]
          early skip of rewriting module: cryptography.hazmat.primitives.kdf [assertion]
          early skip of rewriting module: cryptography.hazmat.primitives.kdf.pbkdf2 [assertion]
          early skip of rewriting module: cryptography.hazmat.primitives.constant_time [assertion]
          early skip of rewriting module: hmac [assertion]
          early skip of rewriting module: cryptography.hazmat.bindings._constant_time [assertion]
          early skip of rewriting module: cryptography.hazmat.primitives.ciphers [assertion]
          early skip of rewriting module: cryptography.hazmat.primitives.ciphers.base [assertion]
          early skip of rewriting module: cryptography.hazmat.primitives.ciphers.modes [assertion]
          early skip of rewriting module: cryptography.hazmat.primitives.ciphers.algorithms [assertion]
          early skip of rewriting module: cryptography.hazmat.backends.openssl [assertion]
          early skip of rewriting module: cryptography.hazmat.backends.openssl.backend [assertion]
          early skip of rewriting module: asn1crypto [assertion]
          early skip of rewriting module: asn1crypto.version [assertion]
          early skip of rewriting module: asn1crypto.core [assertion]
          early skip of rewriting module: asn1crypto._teletex_codec [assertion]
          early skip of rewriting module: asn1crypto._errors [assertion]
          early skip of rewriting module: asn1crypto._ordereddict [assertion]
          early skip of rewriting module: asn1crypto._types [assertion]
          early skip of rewriting module: asn1crypto.parser [assertion]
          early skip of rewriting module: asn1crypto.util [assertion]
          early skip of rewriting module: asn1crypto._iri [assertion]
          early skip of rewriting module: encodings.idna [assertion]
          early skip of rewriting module: stringprep [assertion]
          early skip of rewriting module: cryptography.x509 [assertion]
          early skip of rewriting module: cryptography.x509.certificate_transparency [assertion]
          early skip of rewriting module: cryptography.x509.base [assertion]
          early skip of rewriting module: cryptography.hazmat.primitives.asymmetric [assertion]
          early skip of rewriting module: cryptography.hazmat.primitives.asymmetric.dsa [assertion]
          early skip of rewriting module: cryptography.hazmat.primitives.asymmetric.ec [assertion]
          early skip of rewriting module: cryptography.hazmat._oid [assertion]
          early skip of rewriting module: cryptography.hazmat.primitives.asymmetric.rsa [assertion]
          early skip of rewriting module: cryptography.x509.extensions [assertion]
          early skip of rewriting module: ipaddress [assertion]
          early skip of rewriting module: asn1crypto.keys [assertion]
          early skip of rewriting module: asn1crypto._elliptic_curve [assertion]
          early skip of rewriting module: asn1crypto._int [assertion]
          early skip of rewriting module: asn1crypto._ffi [assertion]
          early skip of rewriting module: asn1crypto._perf [assertion]
          early skip of rewriting module: asn1crypto._perf._big_num_ctypes [assertion]
          early skip of rewriting module: ctypes.util [assertion]
          early skip of rewriting module: asn1crypto.algos [assertion]
          early skip of rewriting module: cryptography.hazmat.primitives.serialization [assertion]
          early skip of rewriting module: cryptography.hazmat.primitives.serialization.base [assertion]
          early skip of rewriting module: cryptography.hazmat.primitives.serialization.ssh [assertion]
          early skip of rewriting module: cryptography.hazmat.primitives.asymmetric.ed25519 [assertion]
          early skip of rewriting module: cryptography.x509.general_name [assertion]
          early skip of rewriting module: cryptography.x509.name [assertion]
          early skip of rewriting module: cryptography.x509.oid [assertion]
          early skip of rewriting module: cryptography.hazmat.backends.openssl.aead [assertion]
          early skip of rewriting module: cryptography.hazmat.backends.openssl.ciphers [assertion]
          early skip of rewriting module: cryptography.hazmat.backends.openssl.cmac [assertion]
          early skip of rewriting module: cryptography.hazmat.backends.openssl.decode_asn1 [assertion]
          early skip of rewriting module: cryptography.hazmat.backends.openssl.dh [assertion]
          early skip of rewriting module: cryptography.hazmat.primitives.asymmetric.dh [assertion]
          early skip of rewriting module: cryptography.hazmat.backends.openssl.dsa [assertion]
          early skip of rewriting module: cryptography.hazmat.backends.openssl.utils [assertion]
          early skip of rewriting module: cryptography.hazmat.primitives.asymmetric.utils [assertion]
          early skip of rewriting module: cryptography.hazmat.backends.openssl.ec [assertion]
          early skip of rewriting module: cryptography.hazmat.backends.openssl.ed25519 [assertion]
          early skip of rewriting module: cryptography.hazmat.backends.openssl.ed448 [assertion]
          early skip of rewriting module: cryptography.hazmat.primitives.asymmetric.ed448 [assertion]
          early skip of rewriting module: cryptography.hazmat.backends.openssl.encode_asn1 [assertion]
          early skip of rewriting module: cryptography.hazmat.backends.openssl.hashes [assertion]
          early skip of rewriting module: cryptography.hazmat.backends.openssl.hmac [assertion]
          early skip of rewriting module: cryptography.hazmat.backends.openssl.ocsp [assertion]
          early skip of rewriting module: cryptography.hazmat.backends.openssl.x509 [assertion]
          early skip of rewriting module: cryptography.x509.ocsp [assertion]
          early skip of rewriting module: cryptography.hazmat.backends.openssl.rsa [assertion]
          early skip of rewriting module: cryptography.hazmat.primitives.asymmetric.padding [assertion]
          early skip of rewriting module: cryptography.hazmat.backends.openssl.x25519 [assertion]
          early skip of rewriting module: cryptography.hazmat.primitives.asymmetric.x25519 [assertion]
          early skip of rewriting module: cryptography.hazmat.backends.openssl.x448 [assertion]
          early skip of rewriting module: cryptography.hazmat.primitives.asymmetric.x448 [assertion]
          early skip of rewriting module: cryptography.hazmat.bindings.openssl [assertion]
          early skip of rewriting module: cryptography.hazmat.bindings.openssl.binding [assertion]
          early skip of rewriting module: cryptography.hazmat.bindings._openssl [assertion]
          early skip of rewriting module: cryptography.hazmat.bindings.openssl._conditional [assertion]
          early skip of rewriting module: cryptography.hazmat.primitives.kdf.scrypt [assertion]
          early skip of rewriting module: Crypto [assertion]
          early skip of rewriting module: ansible.parsing.ajson [assertion]
          early skip of rewriting module: ansible.utils.plugin_docs [assertion]
          early skip of rewriting module: ansible.parsing.plugin_docs [assertion]
          early skip of rewriting module: ansible.parsing.metadata [assertion]
          early skip of rewriting module: ansible.parsing.dataloader [assertion]
          early skip of rewriting module: ansible.module_utils.basic [assertion]
          early skip of rewriting module: syslog [assertion]
          early skip of rewriting module: systemd [assertion]
          early skip of rewriting module: selinux [assertion]
          early skip of rewriting module: ansible.module_utils.common [assertion]
          early skip of rewriting module: ansible.module_utils.common._collections_compat [assertion]
          early skip of rewriting module: ansible.module_utils.common.process [assertion]
          early skip of rewriting module: ansible.module_utils.common.file [assertion]
          early skip of rewriting module: selinux [assertion]
          early skip of rewriting module: ansible.module_utils.pycompat24 [assertion]
          early skip of rewriting module: ansible.vars [assertion]
          early skip of rewriting module: ansible.vars.manager [assertion]
          early skip of rewriting module: ansible.inventory.helpers [assertion]
          early skip of rewriting module: ansible.plugins.cache [assertion]
          early skip of rewriting module: ansible.template [assertion]
          early skip of rewriting module: ansible.template.safe_eval [assertion]
          early skip of rewriting module: ansible.template.template [assertion]
          early skip of rewriting module: ansible.template.vars [assertion]
          early skip of rewriting module: ansible.utils.listify [assertion]
          early skip of rewriting module: ansible.vars.clean [assertion]
          early skip of rewriting module: ansible.cli.playbook [assertion]
          early skip of rewriting module: ansible.executor [assertion]
          early skip of rewriting module: ansible.executor.playbook_executor [assertion]
          early skip of rewriting module: ansible.executor.task_queue_manager [assertion]
          early skip of rewriting module: multiprocessing [assertion]
          early skip of rewriting module: multiprocessing.context [assertion]
          early skip of rewriting module: multiprocessing.process [assertion]
          early skip of rewriting module: multiprocessing.reduction [assertion]
          early skip of rewriting module: array [assertion]
          early skip of rewriting module: ansible.executor.play_iterator [assertion]
          early skip of rewriting module: ansible.playbook [assertion]
          early skip of rewriting module: ansible.playbook.play [assertion]
          early skip of rewriting module: ansible.playbook.attribute [assertion]
          early skip of rewriting module: ansible.playbook.base [assertion]
          early skip of rewriting module: ansible.playbook.become [assertion]
          early skip of rewriting module: ansible.playbook.block [assertion]
          early skip of rewriting module: ansible.playbook.conditional [assertion]
          early skip of rewriting module: ansible.playbook.helpers [assertion]
          early skip of rewriting module: ansible.parsing.mod_args [assertion]
          early skip of rewriting module: ansible.playbook.role [assertion]
          early skip of rewriting module: ansible.playbook.role.metadata [assertion]
          early skip of rewriting module: ansible.playbook.role.include [assertion]
          early skip of rewriting module: ansible.playbook.role.definition [assertion]
          early skip of rewriting module: ansible.playbook.taggable [assertion]
          early skip of rewriting module: ansible.playbook.role.requirement [assertion]
          early skip of rewriting module: tarfile [assertion]
          early skip of rewriting module: ansible.playbook.playbook_include [assertion]
          early skip of rewriting module: ansible.playbook.task [assertion]
          early skip of rewriting module: ansible.playbook.loop_control [assertion]
          early skip of rewriting module: ansible.executor.stats [assertion]
          early skip of rewriting module: ansible.executor.task_result [assertion]
          early skip of rewriting module: ansible.playbook.play_context [assertion]
          early skip of rewriting module: ansible.utils.ssh_functions [assertion]
          early skip of rewriting module: ansible.plugins.callback [assertion]
          early skip of rewriting module: ansible.utils.helpers [assertion]
          early skip of rewriting module: ansible.vars.hostvars [assertion]
          early skip of rewriting module: ansible.vars.reserved [assertion]
          early skip of rewriting module: ansible.plugins.inventory [assertion]
          early skip of rewriting module: ansible.utils.shlex [assertion]
            pytest_pycollect_makeitem [hook]
                collector: <Module tests/test_default.py>
                name: __name__
                obj: test_default
            finish pytest_pycollect_makeitem --> None [hook]
            pytest_pycollect_makeitem [hook]
                collector: <Module tests/test_default.py>
                name: __doc__
                obj: None
            finish pytest_pycollect_makeitem --> None [hook]
            pytest_pycollect_makeitem [hook]
                collector: <Module tests/test_default.py>
                name: __package__
                obj: 
            finish pytest_pycollect_makeitem --> None [hook]
            pytest_pycollect_makeitem [hook]
                collector: <Module tests/test_default.py>
                name: __loader__
                obj: <_pytest.assertion.rewrite.AssertionRewritingHook object at 0x7f6c82858518>
            finish pytest_pycollect_makeitem --> None [hook]
            pytest_pycollect_makeitem [hook]
                collector: <Module tests/test_default.py>
                name: __spec__
                obj: ModuleSpec(name='test_default', loader=<_pytest.assertion.rewrite.AssertionRewritingHook object at 0x7f6c82858518>, origin='/home/eliotberriot/projects/funkwhale/ansible/molecule/default/tests/test_default.py')
            finish pytest_pycollect_makeitem --> None [hook]
            pytest_pycollect_makeitem [hook]
                collector: <Module tests/test_default.py>
                name: __file__
                obj: /home/eliotberriot/projects/funkwhale/ansible/molecule/default/tests/test_default.py
            finish pytest_pycollect_makeitem --> None [hook]
            pytest_pycollect_makeitem [hook]
                collector: <Module tests/test_default.py>
                name: __cached__
                obj: /home/eliotberriot/projects/funkwhale/ansible/molecule/default/tests/__pycache__/test_default.cpython-37-PYTEST.pyc
            finish pytest_pycollect_makeitem --> None [hook]
            pytest_pycollect_makeitem [hook]
                collector: <Module tests/test_default.py>
                name: __builtins__
                obj: {'__name__': 'builtins', '__doc__': "Built-in functions, exceptions, and other objects.\n\nNoteworthy: None is the `nil' object; Ellipsis represents `...' in slices.", '__package__': '', '__loader__': <class '_frozen_importlib.BuiltinImporter'>, '__spec__': ModuleSpec(name='builtins', loader=<class '_frozen_importlib.BuiltinImporter'>), '__build_class__': <built-in function __build_class__>, '__import__': <built-in function __import__>, 'abs': <built-in function abs>, 'all': <built-in function all>, 'any': <built-in function any>, 'ascii': <built-in function ascii>, 'bin': <built-in function bin>, 'breakpoint': <built-in function breakpoint>, 'callable': <built-in function callable>, 'chr': <built-in function chr>, 'compile': <built-in function compile>, 'delattr': <built-in function delattr>, 'dir': <built-in function dir>, 'divmod': <built-in function divmod>, 'eval': <built-in function eval>, 'exec': <built-in function exec>, 'format': <built-in function format>, 'getattr': <built-in function getattr>, 'globals': <built-in function globals>, 'hasattr': <built-in function hasattr>, 'hash': <built-in function hash>, 'hex': <built-in function hex>, 'id': <built-in function id>, 'input': <built-in function input>, 'isinstance': <built-in function isinstance>, 'issubclass': <built-in function issubclass>, 'iter': <built-in function iter>, 'len': <built-in function len>, 'locals': <built-in function locals>, 'max': <built-in function max>, 'min': <built-in function min>, 'next': <built-in function next>, 'oct': <built-in function oct>, 'ord': <built-in function ord>, 'pow': <built-in function pow>, 'print': <built-in function print>, 'repr': <built-in function repr>, 'round': <built-in function round>, 'setattr': <built-in function setattr>, 'sorted': <built-in function sorted>, 'sum': <built-in function sum>, 'vars': <built-in function vars>, 'None': None, 'Ellipsis': Ellipsis, 'NotImplemented': NotImplemented, 'False': False, 'True': True, 'bool': <class 'bool'>, 'memoryview': <class 'memoryview'>, 'bytearray': <class 'bytearray'>, 'bytes': <class 'bytes'>, 'classmethod': <class 'classmethod'>, 'complex': <class 'complex'>, 'dict': <class 'dict'>, 'enumerate': <class 'enumerate'>, 'filter': <class 'filter'>, 'float': <class 'float'>, 'frozenset': <class 'frozenset'>, 'property': <class 'property'>, 'int': <class 'int'>, 'list': <class 'list'>, 'map': <class 'map'>, 'object': <class 'object'>, 'range': <class 'range'>, 'reversed': <class 'reversed'>, 'set': <class 'set'>, 'slice': <class 'slice'>, 'staticmethod': <class 'staticmethod'>, 'str': <class 'str'>, 'super': <class 'super'>, 'tuple': <class 'tuple'>, 'type': <class 'type'>, 'zip': <class 'zip'>, '__debug__': True, 'BaseException': <class 'BaseException'>, 'Exception': <class 'Exception'>, 'TypeError': <class 'TypeError'>, 'StopAsyncIteration': <class 'StopAsyncIteration'>, 'StopIteration': <class 'StopIteration'>, 'GeneratorExit': <class 'GeneratorExit'>, 'SystemExit': <class 'SystemExit'>, 'KeyboardInterrupt': <class 'KeyboardInterrupt'>, 'ImportError': <class 'ImportError'>, 'ModuleNotFoundError': <class 'ModuleNotFoundError'>, 'OSError': <class 'OSError'>, 'EnvironmentError': <class 'OSError'>, 'IOError': <class 'OSError'>, 'EOFError': <class 'EOFError'>, 'RuntimeError': <class 'RuntimeError'>, 'RecursionError': <class 'RecursionError'>, 'NotImplementedError': <class 'NotImplementedError'>, 'NameError': <class 'NameError'>, 'UnboundLocalError': <class 'UnboundLocalError'>, 'AttributeError': <class 'AttributeError'>, 'SyntaxError': <class 'SyntaxError'>, 'IndentationError': <class 'IndentationError'>, 'TabError': <class 'TabError'>, 'LookupError': <class 'LookupError'>, 'IndexError': <class 'IndexError'>, 'KeyError': <class 'KeyError'>, 'ValueError': <class 'ValueError'>, 'UnicodeError': <class 'UnicodeError'>, 'UnicodeEncodeError': <class 'UnicodeEncodeError'>, 'UnicodeDecodeError': <class 'UnicodeDecodeError'>, 'UnicodeTranslateError': <class 'UnicodeTranslateError'>, 'AssertionError': <class 'AssertionError'>, 'ArithmeticError': <class 'ArithmeticError'>, 'FloatingPointError': <class 'FloatingPointError'>, 'OverflowError': <class 'OverflowError'>, 'ZeroDivisionError': <class 'ZeroDivisionError'>, 'SystemError': <class 'SystemError'>, 'ReferenceError': <class 'ReferenceError'>, 'MemoryError': <class 'MemoryError'>, 'BufferError': <class 'BufferError'>, 'Warning': <class 'Warning'>, 'UserWarning': <class 'UserWarning'>, 'DeprecationWarning': <class 'DeprecationWarning'>, 'PendingDeprecationWarning': <class 'PendingDeprecationWarning'>, 'SyntaxWarning': <class 'SyntaxWarning'>, 'RuntimeWarning': <class 'RuntimeWarning'>, 'FutureWarning': <class 'FutureWarning'>, 'ImportWarning': <class 'ImportWarning'>, 'UnicodeWarning': <class 'UnicodeWarning'>, 'BytesWarning': <class 'BytesWarning'>, 'ResourceWarning': <class 'ResourceWarning'>, 'ConnectionError': <class 'ConnectionError'>, 'BlockingIOError': <class 'BlockingIOError'>, 'BrokenPipeError': <class 'BrokenPipeError'>, 'ChildProcessError': <class 'ChildProcessError'>, 'ConnectionAbortedError': <class 'ConnectionAbortedError'>, 'ConnectionRefusedError': <class 'ConnectionRefusedError'>, 'ConnectionResetError': <class 'ConnectionResetError'>, 'FileExistsError': <class 'FileExistsError'>, 'FileNotFoundError': <class 'FileNotFoundError'>, 'IsADirectoryError': <class 'IsADirectoryError'>, 'NotADirectoryError': <class 'NotADirectoryError'>, 'InterruptedError': <class 'InterruptedError'>, 'PermissionError': <class 'PermissionError'>, 'ProcessLookupError': <class 'ProcessLookupError'>, 'TimeoutError': <class 'TimeoutError'>, 'open': <built-in function open>, 'quit': Use quit() or Ctrl-D (i.e. EOF) to exit, 'exit': Use exit() or Ctrl-D (i.e. EOF) to exit, 'copyright': Copyright (c) 2001-2019 Python Software Foundation.
    All Rights Reserved.
    
    Copyright (c) 2000 BeOpen.com.
    All Rights Reserved.
    
    Copyright (c) 1995-2001 Corporation for National Research Initiatives.
    All Rights Reserved.
    
    Copyright (c) 1991-1995 Stichting Mathematisch Centrum, Amsterdam.
    All Rights Reserved., 'credits':     Thanks to CWI, CNRI, BeOpen.com, Zope Corporation and a cast of thousands
        for supporting Python development.  See www.python.org for more information., 'license': See https://www.python.org/psf/license/, 'help': Type help() for interactive help, or help(object) for help about object.}
            finish pytest_pycollect_makeitem --> None [hook]
            pytest_pycollect_makeitem [hook]
                collector: <Module tests/test_default.py>
                name: @py_builtins
                obj: <module 'builtins' (built-in)>
            finish pytest_pycollect_makeitem --> None [hook]
            pytest_pycollect_makeitem [hook]
                collector: <Module tests/test_default.py>
                name: @pytest_ar
                obj: <module '_pytest.assertion.rewrite' from '/home/eliotberriot/.virtualenvs/funkwhale-ansible/lib/python3.7/site-packages/_pytest/assertion/rewrite.py'>
            finish pytest_pycollect_makeitem --> None [hook]
            pytest_pycollect_makeitem [hook]
                collector: <Module tests/test_default.py>
                name: os
                obj: <module 'os' from '/home/eliotberriot/.virtualenvs/funkwhale-ansible/lib/python3.7/os.py'>
            finish pytest_pycollect_makeitem --> None [hook]
            pytest_pycollect_makeitem [hook]
                collector: <Module tests/test_default.py>
                name: pytest
                obj: <module 'pytest' from '/home/eliotberriot/.virtualenvs/funkwhale-ansible/lib/python3.7/site-packages/pytest.py'>
            finish pytest_pycollect_makeitem --> None [hook]
            pytest_pycollect_makeitem [hook]
                collector: <Module tests/test_default.py>
                name: testinfra
                obj: <module 'testinfra' from '/home/eliotberriot/.virtualenvs/funkwhale-ansible/lib/python3.7/site-packages/testinfra/__init__.py'>
            finish pytest_pycollect_makeitem --> None [hook]
            pytest_pycollect_makeitem [hook]
                collector: <Module tests/test_default.py>
                name: testinfra_hosts
                obj: ['instance']
            finish pytest_pycollect_makeitem --> None [hook]
            pytest_pycollect_makeitem [hook]
                collector: <Module tests/test_default.py>
                name: test_hosts_file
                obj: <function test_hosts_file at 0x7f6c827eec80>
              pytest_generate_tests [hook]
                  metafunc: <_pytest.python.Metafunc object at 0x7f6c820f53c8>
              matched marked file 'testinfra.backend.ansible' (from 'testinfra') [assertion]
              find_module called for: testinfra.backend.ansible [assertion]
              found cached rewritten pyc for '/home/eliotberriot/.virtualenvs/funkwhale-ansible/lib/python3.7/site-packages/testinfra/backend/ansible.py' [assertion]
              matched marked file 'testinfra.backend.base' (from 'testinfra') [assertion]
              find_module called for: testinfra.backend.base [assertion]
              found cached rewritten pyc for '/home/eliotberriot/.virtualenvs/funkwhale-ansible/lib/python3.7/site-packages/testinfra/backend/base.py' [assertion]
              early skip of rewriting module: pipes [assertion]
              finish pytest_generate_tests --> [] [hook]
            finish pytest_pycollect_makeitem --> [<Function test_hosts_file[ansible://instance]>] [hook]
            pytest_pycollect_makeitem [hook]
                collector: <Module tests/test_default.py>
                name: test_installed_mandatory_packages
                obj: <function test_installed_mandatory_packages at 0x7f6c80dbd510>
              pytest_generate_tests [hook]
                  metafunc: <_pytest.python.Metafunc object at 0x7f6c820ee908>
                pytest_make_parametrize_id [hook]
                    config: <_pytest.config.Config object at 0x7f6c82c1f390>
                    val: python3
                    argname: package
                finish pytest_make_parametrize_id --> None [hook]
                pytest_make_parametrize_id [hook]
                    config: <_pytest.config.Config object at 0x7f6c82c1f390>
                    val: python3-dev
                    argname: package
                finish pytest_make_parametrize_id --> None [hook]
                pytest_make_parametrize_id [hook]
                    config: <_pytest.config.Config object at 0x7f6c82c1f390>
                    val: python3-pip
                    argname: package
                finish pytest_make_parametrize_id --> None [hook]
                pytest_make_parametrize_id [hook]
                    config: <_pytest.config.Config object at 0x7f6c82c1f390>
                    val: python3-venv
                    argname: package
                finish pytest_make_parametrize_id --> None [hook]
                pytest_make_parametrize_id [hook]
                    config: <_pytest.config.Config object at 0x7f6c82c1f390>
                    val: libldap2-dev
                    argname: package
                finish pytest_make_parametrize_id --> None [hook]
                pytest_make_parametrize_id [hook]
                    config: <_pytest.config.Config object at 0x7f6c82c1f390>
                    val: libsasl2-dev
                    argname: package
                finish pytest_make_parametrize_id --> None [hook]
                pytest_make_parametrize_id [hook]
                    config: <_pytest.config.Config object at 0x7f6c82c1f390>
                    val: git
                    argname: package
                finish pytest_make_parametrize_id --> None [hook]
                pytest_make_parametrize_id [hook]
                    config: <_pytest.config.Config object at 0x7f6c82c1f390>
                    val: unzip
                    argname: package
                finish pytest_make_parametrize_id --> None [hook]
                pytest_make_parametrize_id [hook]
                    config: <_pytest.config.Config object at 0x7f6c82c1f390>
                    val: build-essential
                    argname: package
                finish pytest_make_parametrize_id --> None [hook]
                pytest_make_parametrize_id [hook]
                    config: <_pytest.config.Config object at 0x7f6c82c1f390>
                    val: ffmpeg
                    argname: package
                finish pytest_make_parametrize_id --> None [hook]
                pytest_make_parametrize_id [hook]
                    config: <_pytest.config.Config object at 0x7f6c82c1f390>
                    val: libjpeg-dev
                    argname: package
                finish pytest_make_parametrize_id --> None [hook]
                pytest_make_parametrize_id [hook]
                    config: <_pytest.config.Config object at 0x7f6c82c1f390>
                    val: libmagic-dev
                    argname: package
                finish pytest_make_parametrize_id --> None [hook]
                pytest_make_parametrize_id [hook]
                    config: <_pytest.config.Config object at 0x7f6c82c1f390>
                    val: libpq-dev
                    argname: package
                finish pytest_make_parametrize_id --> None [hook]
                pytest_make_parametrize_id [hook]
                    config: <_pytest.config.Config object at 0x7f6c82c1f390>
                    val: postgresql-client
                    argname: package
                finish pytest_make_parametrize_id --> None [hook]
              finish pytest_generate_tests --> [] [hook]
            finish pytest_pycollect_makeitem --> [<Function test_installed_mandatory_packages[ansible://instance-python3]>, <Function test_installed_mandatory_packages[ansible://instance-python3-dev]>, <Function test_installed_mandatory_packages[ansible://instance-python3-pip]>, <Function test_installed_mandatory_packages[ansible://instance-python3-venv]>, <Function test_installed_mandatory_packages[ansible://instance-libldap2-dev]>, <Function test_installed_mandatory_packages[ansible://instance-libsasl2-dev]>, <Function test_installed_mandatory_packages[ansible://instance-git]>, <Function test_installed_mandatory_packages[ansible://instance-unzip]>, <Function test_installed_mandatory_packages[ansible://instance-build-essential]>, <Function test_installed_mandatory_packages[ansible://instance-ffmpeg]>, <Function test_installed_mandatory_packages[ansible://instance-libjpeg-dev]>, <Function test_installed_mandatory_packages[ansible://instance-libmagic-dev]>, <Function test_installed_mandatory_packages[ansible://instance-libpq-dev]>, <Function test_installed_mandatory_packages[ansible://instance-postgresql-client]>] [hook]
            pytest_pycollect_makeitem [hook]
                collector: <Module tests/test_default.py>
                name: test_installed_services
                obj: <function test_installed_services at 0x7f6c80dbd488>
              pytest_generate_tests [hook]
                  metafunc: <_pytest.python.Metafunc object at 0x7f6c820ee828>
                pytest_make_parametrize_id [hook]
                    config: <_pytest.config.Config object at 0x7f6c82c1f390>
                    val: redis-server
                    argname: service
                finish pytest_make_parametrize_id --> None [hook]
                pytest_make_parametrize_id [hook]
                    config: <_pytest.config.Config object at 0x7f6c82c1f390>
                    val: postgresql
                    argname: service
                finish pytest_make_parametrize_id --> None [hook]
                pytest_make_parametrize_id [hook]
                    config: <_pytest.config.Config object at 0x7f6c82c1f390>
                    val: nginx
                    argname: service
                finish pytest_make_parametrize_id --> None [hook]
              finish pytest_generate_tests --> [] [hook]
            finish pytest_pycollect_makeitem --> [<Function test_installed_services[ansible://instance-redis-server]>, <Function test_installed_services[ansible://instance-postgresql]>, <Function test_installed_services[ansible://instance-nginx]>] [hook]
            pytest_pycollect_makeitem [hook]
                collector: <Module tests/test_default.py>
                name: test_database_created
                obj: <function test_database_created at 0x7f6c80de9ae8>
              pytest_generate_tests [hook]
                  metafunc: <_pytest.python.Metafunc object at 0x7f6c820920f0>
              finish pytest_generate_tests --> [] [hook]
            finish pytest_pycollect_makeitem --> [<Function test_database_created[ansible://instance]>] [hook]
            pytest_pycollect_makeitem [hook]
                collector: <Module tests/test_default.py>
                name: test_database_user_created
                obj: <function test_database_user_created at 0x7f6c80de9b70>
              pytest_generate_tests [hook]
                  metafunc: <_pytest.python.Metafunc object at 0x7f6c820f5550>
              finish pytest_generate_tests --> [] [hook]
            finish pytest_pycollect_makeitem --> [<Function test_database_user_created[ansible://instance]>] [hook]
            pytest_pycollect_makeitem [hook]
                collector: <Module tests/test_default.py>
                name: __repr__
                obj: <slot wrapper '__repr__' of 'module' objects>
            finish pytest_pycollect_makeitem --> None [hook]
            pytest_pycollect_makeitem [hook]
                collector: <Module tests/test_default.py>
                name: __getattribute__
                obj: <slot wrapper '__getattribute__' of 'module' objects>
            finish pytest_pycollect_makeitem --> None [hook]
            pytest_pycollect_makeitem [hook]
                collector: <Module tests/test_default.py>
                name: __setattr__
                obj: <slot wrapper '__setattr__' of 'module' objects>
            finish pytest_pycollect_makeitem --> None [hook]
            pytest_pycollect_makeitem [hook]
                collector: <Module tests/test_default.py>
                name: __delattr__
                obj: <slot wrapper '__delattr__' of 'module' objects>
            finish pytest_pycollect_makeitem --> None [hook]
            pytest_pycollect_makeitem [hook]
                collector: <Module tests/test_default.py>
                name: __init__
                obj: <slot wrapper '__init__' of 'module' objects>
            finish pytest_pycollect_makeitem --> None [hook]
            pytest_pycollect_makeitem [hook]
                collector: <Module tests/test_default.py>
                name: __new__
                obj: <built-in method __new__ of type object at 0x8193a0>
            finish pytest_pycollect_makeitem --> None [hook]
            pytest_pycollect_makeitem [hook]
                collector: <Module tests/test_default.py>
                name: __dir__
                obj: <method '__dir__' of 'module' objects>
            finish pytest_pycollect_makeitem --> None [hook]
            pytest_pycollect_makeitem [hook]
                collector: <Module tests/test_default.py>
                name: __dict__
                obj: <member '__dict__' of 'module' objects>
            finish pytest_pycollect_makeitem --> None [hook]
            pytest_pycollect_makeitem [hook]
                collector: <Module tests/test_default.py>
                name: __hash__
                obj: <slot wrapper '__hash__' of 'object' objects>
            finish pytest_pycollect_makeitem --> None [hook]
            pytest_pycollect_makeitem [hook]
                collector: <Module tests/test_default.py>
                name: __str__
                obj: <slot wrapper '__str__' of 'object' objects>
            finish pytest_pycollect_makeitem --> None [hook]
            pytest_pycollect_makeitem [hook]
                collector: <Module tests/test_default.py>
                name: __lt__
                obj: <slot wrapper '__lt__' of 'object' objects>
            finish pytest_pycollect_makeitem --> None [hook]
            pytest_pycollect_makeitem [hook]
                collector: <Module tests/test_default.py>
                name: __le__
                obj: <slot wrapper '__le__' of 'object' objects>
            finish pytest_pycollect_makeitem --> None [hook]
            pytest_pycollect_makeitem [hook]
                collector: <Module tests/test_default.py>
                name: __eq__
                obj: <slot wrapper '__eq__' of 'object' objects>
            finish pytest_pycollect_makeitem --> None [hook]
            pytest_pycollect_makeitem [hook]
                collector: <Module tests/test_default.py>
                name: __ne__
                obj: <slot wrapper '__ne__' of 'object' objects>
            finish pytest_pycollect_makeitem --> None [hook]
            pytest_pycollect_makeitem [hook]
                collector: <Module tests/test_default.py>
                name: __gt__
                obj: <slot wrapper '__gt__' of 'object' objects>
            finish pytest_pycollect_makeitem --> None [hook]
            pytest_pycollect_makeitem [hook]
                collector: <Module tests/test_default.py>
                name: __ge__
                obj: <slot wrapper '__ge__' of 'object' objects>
            finish pytest_pycollect_makeitem --> None [hook]
            pytest_pycollect_makeitem [hook]
                collector: <Module tests/test_default.py>
                name: __reduce_ex__
                obj: <method '__reduce_ex__' of 'object' objects>
            finish pytest_pycollect_makeitem --> None [hook]
            pytest_pycollect_makeitem [hook]
                collector: <Module tests/test_default.py>
                name: __reduce__
                obj: <method '__reduce__' of 'object' objects>
            finish pytest_pycollect_makeitem --> None [hook]
            pytest_pycollect_makeitem [hook]
                collector: <Module tests/test_default.py>
                name: __subclasshook__
                obj: <method '__subclasshook__' of 'object' objects>
            finish pytest_pycollect_makeitem --> None [hook]
            pytest_pycollect_makeitem [hook]
                collector: <Module tests/test_default.py>
                name: __init_subclass__
                obj: <method '__init_subclass__' of 'object' objects>
            finish pytest_pycollect_makeitem --> None [hook]
            pytest_pycollect_makeitem [hook]
                collector: <Module tests/test_default.py>
                name: __format__
                obj: <method '__format__' of 'object' objects>
            finish pytest_pycollect_makeitem --> None [hook]
            pytest_pycollect_makeitem [hook]
                collector: <Module tests/test_default.py>
                name: __sizeof__
                obj: <method '__sizeof__' of 'object' objects>
            finish pytest_pycollect_makeitem --> None [hook]
            pytest_pycollect_makeitem [hook]
                collector: <Module tests/test_default.py>
                name: __class__
                obj: <attribute '__class__' of 'object' objects>
            finish pytest_pycollect_makeitem --> None [hook]
          finish pytest_make_collect_report --> <CollectReport 'tests/test_default.py' lenresult=20 outcome='passed'> [hook]
        genitems <Function test_hosts_file[ansible://instance]> [collection]
          pytest_itemcollected [hook]
              item: <Function test_hosts_file[ansible://instance]>
          finish pytest_itemcollected --> [] [hook]
        genitems <Function test_installed_mandatory_packages[ansible://instance-python3]> [collection]
          pytest_itemcollected [hook]
              item: <Function test_installed_mandatory_packages[ansible://instance-python3]>
          finish pytest_itemcollected --> [] [hook]
        genitems <Function test_installed_mandatory_packages[ansible://instance-python3-dev]> [collection]
          pytest_itemcollected [hook]
              item: <Function test_installed_mandatory_packages[ansible://instance-python3-dev]>
          finish pytest_itemcollected --> [] [hook]
        genitems <Function test_installed_mandatory_packages[ansible://instance-python3-pip]> [collection]
          pytest_itemcollected [hook]
              item: <Function test_installed_mandatory_packages[ansible://instance-python3-pip]>
          finish pytest_itemcollected --> [] [hook]
        genitems <Function test_installed_mandatory_packages[ansible://instance-python3-venv]> [collection]
          pytest_itemcollected [hook]
              item: <Function test_installed_mandatory_packages[ansible://instance-python3-venv]>
          finish pytest_itemcollected --> [] [hook]
        genitems <Function test_installed_mandatory_packages[ansible://instance-libldap2-dev]> [collection]
          pytest_itemcollected [hook]
              item: <Function test_installed_mandatory_packages[ansible://instance-libldap2-dev]>
          finish pytest_itemcollected --> [] [hook]
        genitems <Function test_installed_mandatory_packages[ansible://instance-libsasl2-dev]> [collection]
          pytest_itemcollected [hook]
              item: <Function test_installed_mandatory_packages[ansible://instance-libsasl2-dev]>
          finish pytest_itemcollected --> [] [hook]
        genitems <Function test_installed_mandatory_packages[ansible://instance-git]> [collection]
          pytest_itemcollected [hook]
              item: <Function test_installed_mandatory_packages[ansible://instance-git]>
          finish pytest_itemcollected --> [] [hook]
        genitems <Function test_installed_mandatory_packages[ansible://instance-unzip]> [collection]
          pytest_itemcollected [hook]
              item: <Function test_installed_mandatory_packages[ansible://instance-unzip]>
          finish pytest_itemcollected --> [] [hook]
        genitems <Function test_installed_mandatory_packages[ansible://instance-build-essential]> [collection]
          pytest_itemcollected [hook]
              item: <Function test_installed_mandatory_packages[ansible://instance-build-essential]>
          finish pytest_itemcollected --> [] [hook]
        genitems <Function test_installed_mandatory_packages[ansible://instance-ffmpeg]> [collection]
          pytest_itemcollected [hook]
              item: <Function test_installed_mandatory_packages[ansible://instance-ffmpeg]>
          finish pytest_itemcollected --> [] [hook]
        genitems <Function test_installed_mandatory_packages[ansible://instance-libjpeg-dev]> [collection]
          pytest_itemcollected [hook]
              item: <Function test_installed_mandatory_packages[ansible://instance-libjpeg-dev]>
          finish pytest_itemcollected --> [] [hook]
        genitems <Function test_installed_mandatory_packages[ansible://instance-libmagic-dev]> [collection]
          pytest_itemcollected [hook]
              item: <Function test_installed_mandatory_packages[ansible://instance-libmagic-dev]>
          finish pytest_itemcollected --> [] [hook]
        genitems <Function test_installed_mandatory_packages[ansible://instance-libpq-dev]> [collection]
          pytest_itemcollected [hook]
              item: <Function test_installed_mandatory_packages[ansible://instance-libpq-dev]>
          finish pytest_itemcollected --> [] [hook]
        genitems <Function test_installed_mandatory_packages[ansible://instance-postgresql-client]> [collection]